verify method

  1. @override
Future<bool?> verify(
  1. Uint8List buf,
  2. Map<String, Uint8List> keys, {
  3. Context? ctx,
})
override

Verify the signature value.

Implementation

@override
Future<bool?> verify(
  Uint8List buf,
  Map<String, Uint8List> keys, {
  Context? ctx,
}) async {
  return await _h.invoke(this, _methods['verify']!, [buf, keys], ctx);
}