addCrNotifierListener method

void addCrNotifierListener(
  1. List<NOTIFIER_EVENT> evts
)

Implementation

void addCrNotifierListener(List<NOTIFIER_EVENT> evts) {
  for (NOTIFIER_EVENT evt in evts) {
    _evts.add(evt.toString().replaceAll("NOTIFIER_EVENT.", ""));
  }
  CrNotifiy.instance.addNotifier(this);
}