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