JsonObjectDecoder<T> typedef

JsonObjectDecoder<T> = T Function(Map<String, dynamic> json)

Transforms a JSON object representation (Map<String, dynamic>) into a Dart object.

Implementation

typedef JsonObjectDecoder<T> = T Function(Map<String, dynamic> json);