combined property

ValueCell<void> get combined

Return an action cell that notifies its observers when any of the cells in this is triggered.

Implementation

ValueCell<void> get combined => ComputeCell(
  compute: () {},
  arguments: toSet()
);