verifySignature method
Implementation
Future<bool?> verifySignature(
String signature, String hash, String pubKey) async {
final arguments = {
"signature": hex.decode(signature),
"hash": hex.decode(hash),
"pubKey": hex.decode(pubKey)
};
return await methodChannel.invokeMethod<bool>(
'verifySignature',
arguments,
);
}