LazyDecoder class abstract

Implementers
Available extensions

Constructors

LazyDecoder.new()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

decodeEager(void onDecode(Decoder decoder)) → void
decodeFuture<T>({Decodable<T>? using}) Future<T>

Available on LazyDecoder, provided by the AsyncLazyDecoder extension

Decodes a Future of T using the provided Decodable.
decodeIterated(void onItem(LazyIteratedDecoder decoder), {required void done()}) → void
decodeKeyed(void onEntry(Object key, LazyKeyedDecoder decoder), {required void done()}) → void
decodeList<T>(void onValue(List<T> value), {Decodable<T>? using}) → void
decodeObject<T>(void onValue(T value), {Decodable<T>? using}) → void
decodeObjectOrNull<T>(void onValue(T? value), {Decodable<T>? using}) → void
decodeStream<T>({Decodable<T>? using}) Stream<T>

Available on LazyDecoder, provided by the AsyncLazyDecoder extension

Decodes a Stream of T using the provided Decodable.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
whatsNext(void onType(DecodingType type)) → void

Operators

operator ==(Object other) bool
The equality operator.
inherited