getAvailableBiometrics method
Get list of available biometric types on the device
Implementation
@override
Future<List<String>> getAvailableBiometrics() async {
final result = await methodChannel.invokeMethod<List>('getAvailableBiometrics');
return result?.cast<String>() ?? [];
}