AuthObserver<T extends Auth<AuthKeys>> constructor

const AuthObserver<T extends Auth<AuthKeys>>({
  1. Key? key,
  2. bool liveAsBackground = false,
  3. OnAuthErrorListener? onError,
  4. OnAuthLoadingListener? onLoading,
  5. OnAuthMessageListener? onMessage,
  6. OnAuthStateChangeListener<T>? onStatus,
  7. required Widget child,
})

Implementation

const AuthObserver({
  super.key,
  this.liveAsBackground = false,
  this.onError,
  this.onLoading,
  this.onMessage,
  this.onStatus,
  required this.child,
});