getIsBiometricSupport method

  1. @override
Future<bool?> getIsBiometricSupport()
override

Implementation

@override
Future<bool?> getIsBiometricSupport() async {
  try {
    final version =
        await methodChannel.invokeMethod<bool>('isMobileHasBiometric');
    return version;
  } on PlatformException catch (e) {
    debugPrint(e.message);
    rethrow;
  } catch (e) {
    rethrow;
  }
}