BiometricAuthResult constructor

BiometricAuthResult({
  1. required bool isSuccess,
  2. String? message,
  3. String? errorCode,
})

Implementation

BiometricAuthResult({
  required this.isSuccess,
  this.message,
  this.errorCode,
});