PodListBuilder<T> constructor

const PodListBuilder<T>({
  1. Key? key,
  2. required Iterable<TFutureListenable<T>> podList,
  3. required TOnValueBuilder<Iterable<T?>, PodListBuilderSnapshot<T>> builder,
  4. Widget? child,
  5. void onDispose(
    1. Iterable<ValueListenable<T>> podList
    )?,
})

Implementation

const PodListBuilder({
  super.key,
  required this.podList,
  required this.builder,
  this.child,
  this.onDispose,
});