deviceSupportsBiometrics method

  1. @override
Future<bool> deviceSupportsBiometrics()
override

Returns true if the device is capable of checking biometrics.

This will return true even if there are no biometrics currently enrolled.

Implementation

@override
Future<bool> deviceSupportsBiometrics() async {
  // Biometrics are supported on any supported device.
  return isDeviceSupported();
}