toDecodedJson method

dynamic toDecodedJson({
  1. Object? reviver(
    1. Object? key,
    2. Object? value
    )?,
})

Parses this string and returns the resulting JSON object.

Shorthand for jsonDecode.

Implementation

dynamic toDecodedJson(
        {Object? Function(Object? key, Object? value)? reviver}) =>
    jsonDecode(reviver: reviver);