verify method
Returns true if the signature
was derived by signing the message
using pubkey
's
secret key
.
Implementation
Future<bool> verify(final Uint8List message, final Uint8List signature,
final Uint8List pubkey) =>
compute((_) => verifySync(message, signature, pubkey), null);