ProxyNotifier9<T, L1, L2, L3, L4, L5, L6, L7, L8, L9> constructor
ProxyNotifier9<T, L1, L2, L3, L4, L5, L6, L7, L8, L9> (
- L1 l1,
- L2 l2,
- L3 l3,
- L4 l4,
- L5 l5,
- L6 l6,
- L7 l7,
- L8 l8,
- L9 l9,
- T getValue(
- L1 l1,
- L2 l2,
- L3 l3,
- L4 l4,
- L5 l5,
- L6 l6,
- L7 l7,
- L8 l8,
- L9 l9,
- bool? concurrent = false,
Transforms nine values into a ValueListenable.
At least 1 of these nine values should be a Listenable,
so that the ProxyNotifier knows when to send its own notifications.
Implementation
ProxyNotifier9(
this.l1,
this.l2,
this.l3,
this.l4,
this.l5,
this.l6,
this.l7,
this.l8,
this.l9,
this.getValue, {
super.concurrent,
}) : super(
ProxyListenable(l1, l2, l3, l4, l5, l6, l7, l8, l9),
value: getValue(l1, l2, l3, l4, l5, l6, l7, l8, l9),
);