ProxyNotifier7<T, L1, L2, L3, L4, L5, L6, L7> constructor

ProxyNotifier7<T, L1, L2, L3, L4, L5, L6, L7>(
  1. L1 l1,
  2. L2 l2,
  3. L3 l3,
  4. L4 l4,
  5. L5 l5,
  6. L6 l6,
  7. L7 l7,
  8. T getValue(
    1. L1 l1,
    2. L2 l2,
    3. L3 l3,
    4. L4 l4,
    5. L5 l5,
    6. L6 l6,
    7. L7 l7,
    ), {
  9. bool? concurrent = false,
})

Transforms seven values into a ValueListenable.

At least 1 of these seven values should be a Listenable, so that the ProxyNotifier knows when to send its own notifications.

Implementation

ProxyNotifier7(
  this.l1,
  this.l2,
  this.l3,
  this.l4,
  this.l5,
  this.l6,
  this.l7,
  this.getValue, {
  super.concurrent,
}) : super(
       ProxyListenable(l1, l2, l3, l4, l5, l6, l7),
       value: getValue(l1, l2, l3, l4, l5, l6, l7),
     );