getShowBiometricPromt method

  1. @override
Future<String?> getShowBiometricPromt(
  1. String? title,
  2. String? message
)
override

Implementation

@override
Future<String?> getShowBiometricPromt(String? title, String? message) async {
  final result =
      await methodChannel.invokeMethod<String>('showBiometricPrompt', {
    "title": title,
    "subtitle": message,
  });
  //    await methodChannel.invokeMethod<String>('checkIsBiometricChange');
  // await methodChannel.invokeMethod<String>('showBiometricPrompt');
  return result;
}