QueryEncryptedSeedRequest.deserialize constructor
Implementation
factory QueryEncryptedSeedRequest.deserialize(List<int> bytes) {
final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
return QueryEncryptedSeedRequest(pubKey: decode.getBytes<List<int>?>(1));
}