authenticate method

Future<Map<String, dynamic>> authenticate({
  1. required String title,
  2. String? subtitle,
  3. String? description,
  4. String negativeButtonText = 'Cancel',
  5. bool confirmationRequired = false,
  6. bool allowDeviceCredential = false,
  7. String biometricStrength = 'strong',
})

Authenticate using biometrics or device credentials

Implementation

Future<Map<String, dynamic>> authenticate({
  required String title,
  String? subtitle,
  String? description,
  String negativeButtonText = 'Cancel',
  bool confirmationRequired = false,
  bool allowDeviceCredential = false,
  String biometricStrength = 'strong',
}) {
  throw UnimplementedError('authenticate() has not been implemented.');
}