ProxyNotifier3<T, L1, L2, L3> constructor
ProxyNotifier3<T, L1, L2, L3> (
- L1 l1,
- L2 l2,
- L3 l3,
- T getValue(
- L1 l1,
- L2 l2,
- L3 l3
- bool? concurrent = false,
Transforms three values into a ValueListenable.
At least 1 of these three values should be a Listenable,
so that the ProxyNotifier knows when to send its own notifications.
Implementation
ProxyNotifier3(this.l1, this.l2, this.l3, this.getValue, {super.concurrent})
: super(ProxyListenable(l1, l2, l3), value: getValue(l1, l2, l3));