PodBuilder<T> constructor

const PodBuilder<T>({
  1. Key? key,
  2. required TFutureListenable<T> pod,
  3. required TOnValueBuilder<T?, PodBuilderSnapshot<T>> builder,
  4. Widget? child,
  5. void onDispose(
    1. ValueListenable<T> pod
    )?,
})

Implementation

const PodBuilder({
  super.key,
  required this.pod,
  required this.builder,
  this.child,
  this.onDispose,
});