WatchAsyncComputed<T> constructor

const WatchAsyncComputed<T>({
  1. Key? key,
  2. required Widget builder(
    1. BuildContext context,
    2. T? value
    ),
  3. required ComputedAsyncNotifier<T> computed,
})

Creates a new WatchAsyncComputed.

The computed parameter must not be null.

The builder parameter must not be null.

Implementation

const WatchAsyncComputed({
  super.key,
  required this.builder,
  required this.computed,
});