notify method
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);
}
Emits an authentication failure event to all current listeners.
Does nothing if this notifier has already been disposed.
void notify() {
if (_controller.isClosed) return;
_controller.add(null);
}