StreamBuilderWithValue<T> constructor

const StreamBuilderWithValue<T>({
  1. required StreamWithValue<T> streamWithValue,
  2. required AsyncWidgetBuilder<T> builder,
  3. Key? key,
})

Implementation

const StreamBuilderWithValue({
  required this.streamWithValue,
  required this.builder,
  Key? key,
}) : super(key: key);