BiometricBuilder constructor

const BiometricBuilder({
  1. Key? key,
  2. required BiometricShieldInterface shield,
  3. required String reason,
  4. String? userId,
  5. bool reauthOnResume = false,
  6. bool autoAuthenticate = true,
  7. required Widget builder(
    1. BuildContext context,
    2. AuthState state
    ),
})

Implementation

const BiometricBuilder({
  super.key,
  required this.shield,
  required this.reason,
  this.userId,
  this.reauthOnResume = false,
  this.autoAuthenticate = true,
  required this.builder,
});