In the Player Model, I want to save the JSON response so that I will get any new computed properties in the future without changing the schema.
But here, I'm getting the error to save the json of type [String: Any].
Any alternative or recommendations...?
Any
is not a supported value type of Map. Looking a the documentation for Map, which shows the definitionvalue is a RealmCollectionValue can be one of the following types
One option is to to use AnyRealmValue so it would look like this
here's how to populate the json with a string and an int
then to get back the values stored in the map:
and the output