StreamBuilderBase<T, S> constructor Null safety

const StreamBuilderBase<T, S>(
  1. {Key? key,
  2. Stream<T>? stream}
)

Creates a StreamBuilderBase connected to the specified stream.

Implementation

const StreamBuilderBase({ super.key, this.stream });