AsyncPodBuilder<T extends Object> constructor

const AsyncPodBuilder<T extends Object>({
  1. Key? key,
  2. required Async<ValueListenable<T>> pod,
  3. required TOnOptionBuilder<T, PodBuilderSnapshot<T>> builder,
  4. void onDispose(
    1. ValueListenable<T> pod
    )?,
  5. Duration? debounceDuration,
  6. Duration? cacheDuration = Duration.zero,
  7. Widget? child,
})

Implementation

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