PersistentStreamBuilder<T> constructor

const PersistentStreamBuilder<T>({
  1. Key? key,
  2. required PersistentStream<T> stream,
  3. required Widget builder(
    1. BuildContext context,
    2. T? value,
    3. AsyncSnapshot snapshot
    ),
})

Implementation

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