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