StreamBuilder<T> constructor

StreamBuilder<T>({
  1. required AsyncWidgetBuilder<T> builder,
  2. Stream<T>? stream,
  3. T? initialData,
  4. Key? key,
})

Implementation

StreamBuilder({
  required this.builder,
  this.stream,
  this.initialData,
  super.key,
});