encodeStream<T> method
Implementation
void encodeStream<T>(String key, Stream<T> value, {Encodable<T>? using}) {
assert(canEncodeCustom<Stream>(), '$runtimeType does not support encoding Streams.');
encodeObject<Stream>(key, value, using: AsyncEncodable._stream<T>(using));
}