You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JsonGen gave me the impression that it could work because the Dictionary.decodeJson method takes a key decoder that is somewhat generic. But it really only will work with String keys because of the direct case to [Key: Value] that JsonGen performs, maybe this is something that could be a little stricter.
The text was updated successfully, but these errors were encountered:
Only
[String: *]
dicts are supported by JsonGen, since a Json dictionary key always is a string. I tried to outsmart JsonGen by creating this:JsonGen gave me the impression that it could work because the
Dictionary.decodeJson
method takes a key decoder that is somewhat generic. But it really only will work withString
keys because of the direct case to[Key: Value]
that JsonGen performs, maybe this is something that could be a little stricter.The text was updated successfully, but these errors were encountered: