QueryEncryptedSeedRequest.deserialize constructor
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),
);
}