SequenceEqualStream<S, T> constructor
SequenceEqualStream<S, T> (})
Creates a Stream that emits true or false, depending on the equality between the provided Streams. This single value is emitted when both provided Streams are complete. After this event, the Stream closes.
Implementation
SequenceEqualStream(
Stream<S> stream,
Stream<T> other, {
bool Function(S s, T t)? dataEquals,
bool Function(ErrorAndStackTrace, ErrorAndStackTrace)? errorEquals,
}) : _controller = _buildController(stream, other, dataEquals, errorEquals);