JsonBuilder<T> typedef

JsonBuilder<T> = T Function(JsonReader)

A function reading JSON data from a JsonReader into a Dart value.

This is a general type which can be implemented for any type that can be built from JSON data.

Implementation

typedef JsonBuilder<T> = T Function(JsonReader);