StreamView<T> constructor Null safety

const StreamView<T>(
  1. Stream<T> stream
)

Implementation

const StreamView(Stream<T> stream)
    : _stream = stream,
      super._internal();