WatchAll constructor

const WatchAll({
  1. required List<Listenable?> watchers,
  2. required Widget builder(
    1. BuildContext context
    ),
  3. bool watchWhen()?,
  4. Duration? threshold,
  5. Key? key,
})

Implementation

const WatchAll({
  required this.watchers,
  required this.builder,
  this.watchWhen,
  this.threshold,
  super.key,
});