StreamBuilderBase<T, S> constructor

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

Creates a StreamBuilderBase connected to the specified stream.

Implementation

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