call method

void call()

Implementation

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