call abstract method

void call(
  1. covariant S signal, {
  2. Set<Cell>? notified,
})

Propagates a signal through all linked cells.

signal - The signal to propagate notified - Optional set to track which cells have already been notified to prevent duplicate notifications in complex graphs

Implementation

void call(covariant S signal, {Set<Cell>? notified});