notifyAllSubscribers method

  1. @internal
void notifyAllSubscribers(
  1. AuthChangeEvent event
)

For internal use only.

Implementation

@internal
void notifyAllSubscribers(AuthChangeEvent event) {
  final state = AuthState(event, currentSession);
  _onAuthStateChangeController.add(state);
  _onAuthStateChangeControllerSync.add(state);
}