QueryEncryptedSeedRequest.deserialize constructor

QueryEncryptedSeedRequest.deserialize(
  1. List<int> bytes
)

Implementation

factory QueryEncryptedSeedRequest.deserialize(List<int> bytes) {
  final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
  return QueryEncryptedSeedRequest(
    certHash: decode.getString<String?>(1),
    height: decode.getBigInt<BigInt?>(2),
  );
}