Observer3<A, B, C> constructor

const Observer3<A, B, C>({
  1. Key? key,
  2. required Reactive<A> listenable,
  3. required Reactive<B> listenable2,
  4. required Reactive<C> listenable3,
  5. required Widget listener(
    1. A data1,
    2. B data2,
    3. C data3
    ),
})

Constructs an Observer3 widget.

The listenable parameter is the first reactive variable to listen to.

The listenable2 parameter is the second reactive variable to listen to.

The listenable3 parameter is the third reactive variable to listen to.

The listener parameter is a callback function that defines the widget to rebuild whenever any of the reactive variables changes.

Implementation

const Observer3({
  Key? key,
  required this.listenable,
  required this.listenable2,
  required this.listenable3,
  required this.listener,
}) : super(key: key);