AuthBuilder<T extends Auth<AuthKeys>> constructor

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

Implementation

const AuthBuilder({
  super.key,
  this.initial,
  this.ids = const [],
  this.onChanges,
  this.onError,
  this.onLoading,
  this.onMessage,
  this.onStatus,
  required this.builder,
});