verify method
Verify the provided data
and signature
match this keypair's public key.
Implementation
bool verify(Uint8List data, Uint8List signature) {
ed25519.Signature sgr = ed25519.Signature(_mPublicKey, null);
return sgr.detached_verify(data, signature);
}