FromJson<T> typedef

FromJson<T> = T Function(Map<String, Object?>)

Parser function to convert a JSON map to a Dart object.

Implementation

typedef FromJson<T> = T Function(Map<String, Object?>);