verify static method

bool verify(
  1. String? pubkey,
  2. String message,
  3. String signature
)

This will verify a signature for a message with the public key.

Implementation

static bool verify(
  String? pubkey,
  String message,
  String signature,
) {
  return bip340.verify(pubkey, message, signature);
}