isBiometricEnrolled method
Check if biometric is enrolled on the device.
Implementation
@override
Future<bool> isBiometricEnrolled() async {
final result = await methodChannel.invokeMethod<bool>(
'isBiometricEnrolled',
);
return result ?? false;
}