notify method

void notify()

Emits an authentication failure event to all current listeners.

Does nothing if this notifier has already been disposed.

Implementation

void notify() {
  if (_controller.isClosed) return;
  _controller.add(null);
}