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 ofT
using 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 ofT
or 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 ofT
using 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 ofT
or null using the provided Decodable.