Consumer<T> constructor

const Consumer<T>({
  1. Key? key,
  2. required Watchable<T> watchable,
  3. required ValueWidgetBuilder<T> builder,
  4. Widget? child,
})

Creates a Consumer.

The watchable and builder arguments must not be null. The child is optional but is good practice to use if part of the widget subtree does not depend on the value of the watchable.

Implementation

const Consumer({
  Key? key,
  required this.watchable,
  required this.builder,
  this.child,
}) : super(key: key);