WatchAsyncComputed<T> constructor
const
WatchAsyncComputed<T> ({
- Key? key,
- required Widget builder(
- BuildContext context,
- T? value
- 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,
});