SerializableDecoder2<T, V> typedef

SerializableDecoder2<T, V> = T Function<A, B>(V, A (Object?), B (Object?))

The decoding function of a serializable class (fromJson) with two generic type parameters.

Implementation

typedef SerializableDecoder2<T, V> =
    T Function<A, B>(V, A Function(Object?), B Function(Object?));