call method

void call(
  1. T value
)

Implementation

void call(T value) {
  if (_callback != null) {
    _callback!(value);
  }
}