AuthProvider<T extends Auth<AuthKeys>> constructor

const AuthProvider<T extends Auth<AuthKeys>>({
  1. Key? key,
  2. required Authorizer<T> authorizer,
  3. required Widget child,
  4. bool initialCheck = true,
  5. bool listening = false,
  6. bool createInstance = false,
})

Implementation

const AuthProvider({
  super.key,
  required this.authorizer,
  required this.child,
  this.initialCheck = true,
  this.listening = false,
  this.createInstance = false,
});