WatchComputed<T> constructor

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

Implementation

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