fromParsedJson static method

Implementation

static Secp256k1KeyIdentity fromParsedJson(JsonableSecp256k1Identity obj) {
  return Secp256k1KeyIdentity(
      Secp256k1PublicKey.fromRaw(blobFromHex(obj[0])), blobFromHex(obj[1]));
}