ForcedAsyncPodListBuilder<T extends Object> constructor

const ForcedAsyncPodListBuilder<T extends Object>({
  1. Key? key,
  2. required Iterable<Resolvable<ValueListenable<T>>> podList,
  3. required TOnOptionListBuilder<T, PodListBuilderSnapshot<T>> builder,
  4. void onDispose(
    1. Iterable<ValueListenable<T>> podList
    )?,
  5. Duration? debounceDuration,
  6. Duration? cacheDuration = Duration.zero,
  7. Widget? child,
})

Implementation

const ForcedAsyncPodListBuilder({
  super.key,
  required this.podList,
  required this.builder,
  this.onDispose,
  this.debounceDuration,
  this.cacheDuration = Duration.zero,
  this.child,
});