stopNotify method

  1. @override
void stopNotify(
  1. Notifiee notifiee
)
override

Unregister a notifiee for signals

Implementation

@override
void stopNotify(Notifiee notifiee) {
  _notifieeLock.synchronized(() {
    _notifiees.remove(notifiee);
  });
}