notify method

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

Register a notifiee for signals

Implementation

@override
void notify(Notifiee notifiee) {
  _notifieeLock.synchronized(() {
    _notifiees.add(notifiee);
  });
}