AuthButton<T extends Auth<AuthKeys>> constructor

const AuthButton<T extends Auth<AuthKeys>>({
  1. Key? key,
  2. Object? args,
  3. String? id,
  4. bool notifiable = true,
  5. required AuthButtonType type,
  6. required Widget builder(
    1. BuildContext context,
    2. VoidCallback callback
    ),
  7. Authenticator? authenticator,
  8. bool storeToken = false,
  9. Map<String, dynamic>? updates,
  10. SignByBiometricCallback<Auth<AuthKeys>>? onBiometric,
})

Implementation

const AuthButton({
  super.key,
  this.args,
  this.id,
  this.notifiable = true,
  required this.type,
  required this.builder,
  this.authenticator,
  this.storeToken = false,
  this.updates,
  this.onBiometric,
});