ObserverN constructor
Constructs an ObserverN widget.
The listenable parameter is a list of reactive variables 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 ObserverN({
Key? key,
required this.listenable,
required this.listener,
}) : super(key: key);