decodedValueAsMap property

Map<String, dynamic> decodedValueAsMap

The JSON data decoded as an instance of Map<String, dynamic>.

The JSON data must be a JSON object or it will throw a JsonDecodingError.

Implementation

Map<String, dynamic> get decodedValueAsMap =>
    wrapJsonUtilOperation(() => _decodedValue.asMap());