PodResultListBuilder<T extends Object> constructor

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

Implementation

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