Decodes a JSON string into a dynamic object.
The str parameter is the JSON string to be decoded. Returns the decoded dynamic object.
str
@override dynamic decodeJson(String str) { return decoder.convert(str); }