Decodes a JSON string back to a structured object.
json is the JSON string to deserialize.
json
Returns the decoded object (typically Map or List).
static dynamic decode(String json) { return coder!.decode(json); }