notifyException method

  1. @internal
Object notifyException(
  1. Object exception, [
  2. StackTrace? stackTrace
])

For internal use only.

Implementation

@internal
Object notifyException(Object exception, [StackTrace? stackTrace]) {
  _onAuthStateChangeController.addError(
    exception,
    stackTrace ?? StackTrace.current,
  );
  return exception;
}