trackArgument static method

void trackArgument(
  1. ValueCell cell
)

Inform the current argument cell listener that the value of cell was referenced.

Implementation

static void trackArgument(ValueCell cell) {
  _onUseArgument?.call(cell);
}