getShowBiometricPromt method
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;
}