unregisterSubscriber method

void unregisterSubscriber(
  1. NotificationHandlerFunc handler
)

unRegisters a notification subscriber

Implementation

void unregisterSubscriber(NotificationHandlerFunc handler) {
  _notificationSubscribers.remove(handler);
}