notifyIfActive method

void notifyIfActive()

Implementation

void notifyIfActive() {
  if (this._isActive) {
    notifyListeners();
  } else {
    assert(false, "NOT ACTIVE");
    _log.warning("NOT ACTIVE!!");
  }
}