verify method

Future<bool> verify(
  1. Uint8List message,
  2. Uint8List signature,
  3. Uint8List pubkey
)

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);