Closed ttypic closed 5 months ago
Resolves https://github.com/ably/ably-flutter/issues/523
By default JsonObject is deserializing into Map<Object?, Object?>, we need to do explicit cast to get Map<String, dynamic>
JsonObject
Map<Object?, Object?>
Map<String, dynamic>
Resolves https://github.com/ably/ably-flutter/issues/523
By default
JsonObject
is deserializing intoMap<Object?, Object?>
, we need to do explicit cast to getMap<String, dynamic>