AuthObserver<T extends Auth<AuthKeys>> constructor

const AuthObserver<T extends Auth<AuthKeys>>({
  1. Key? key,
  2. List<String> ids = const [],
  3. bool liveAsBackground = false,
  4. OnAuthChanges<T>? onChanges,
  5. OnAuthError? onError,
  6. OnAuthLoading? onLoading,
  7. OnAuthMessage? onMessage,
  8. OnAuthStatus? onStatus,
  9. required Widget child,
})

Implementation

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