PersistentStreamBuilder<T> constructor

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

Implementation

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