persistPublicKey method

Future<void> persistPublicKey(
  1. JWK key
)

Implementation

Future<void> persistPublicKey(JWK key) async {
  _core.logger.d('[$runtimeType] persisting public key: ${key.toJson()}');
  await _verifyStore.setItem(key);
  _publicKey = key;
}