AsyncMappedDecoder extension
Methods
-
decodeFuture<
T> (String key, {int? id, Decodable< T> ? using}) → Future<T> -
Available on MappedDecoder, provided by the AsyncMappedDecoder extension
Decodes a Future ofTusing the provided Decodable. -
decodeFutureOrNull<
T> (String key, {int? id, Decodable< T> ? using}) → Future<T> ? -
Available on MappedDecoder, provided by the AsyncMappedDecoder extension
Decodes a Future ofTor null using the provided Decodable. -
decodeStream<
T> (String key, {int? id, Decodable< T> ? using}) → Stream<T> -
Available on MappedDecoder, provided by the AsyncMappedDecoder extension
Decodes a Stream ofTusing the provided Decodable. -
decodeStreamOrNull<
T> (String key, {int? id, Decodable< T> ? using}) → Stream<T> ? -
Available on MappedDecoder, provided by the AsyncMappedDecoder extension
Decodes a Stream ofTor null using the provided Decodable.