addStream method Null safety

Future addStream(
  1. Stream<List<int>> stream
)
override

Adds all elements of the given stream.

Returns a Future that completes when all elements of the given stream have been added.

If the stream contains an error, the addStream ends at the error, and the returned future completes with that error.

This function must not be called when a stream is currently being added using this function.

Implementation

Future addStream(Stream<List<int>> stream);