hasKey method
Implementation
@override
Future<bool> hasKey(String publicKeyBase64) async {
final bool? hasKey = await methodChannel.invokeMethod<bool>(
'hasKey',
<String, Object?>{'publicKeyBase64': publicKeyBase64},
);
return hasKey ?? false;
}