notifierLazy method

void notifierLazy()
inherited

Implementation

void notifierLazy() {
  var notifyObj = notifyListenersMap[hashCode];
  if (notifyObj != null) {
    notifyObj();
  }
}