verify method

Future<bool> verify(
  1. Uint8List challenge
)

Implementation

Future<bool> verify(Uint8List challenge) => _generator.verify(
  challenge,
  signature: Signature(
    signature,
    publicKey: SimplePublicKey(publicKey, type: KeyPairType.ed25519),
  ),
);