Watcher constructor

const Watcher({
  1. Key? key,
  2. WidgetBuilder? builder,
  3. String? name,
  4. VoidCallback? watch,
})

Implementation

const Watcher({Key? key, this.builder, this.name, this.watch})
    : super(key: key);