verify static method

Future<Object?> verify(
  1. Object data,
  2. KeyPair pair
)

Verify the data with the pair.

Implementation

static Future<Object?> verify(Object data, KeyPair pair) =>
    toFuture(SeaJsImpl.verify(data, pair)).then(jsToDart);