notify method

void notify()

Implementation

void notify() {
  if (_notify == null) {
    return;
  }
  _notify!();
}