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 {
  final args = toSet();

  return ComputeCell(
    compute: () {},
    arguments: args,
    key: _CombinedActionCellKey(args)
  );
}