jsonDecode method

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

Parses this string and returns the resulting JSON object.

The optional reviver function is called once for each object or list property that has been parsed during decoding. The key argument is either the integer list index for a list property, the string map key for object properties, or null for the final result.

The default reviver (when not provided) is the identity function.

Implementation

dynamic jsonDecode({dynamic Function(Object? key, Object? value)? reviver}) =>
    json.decode(this, reviver: reviver);