call method

void call(
  1. T value
)

Implementation

void call(T value) {
  if (_stopped) throw Exception("Add stop checker");
  currentValue = value;
  visitor!.call(this);
}