QueryParamsRequest.deserialize constructor
Implementation
factory QueryParamsRequest.deserialize(List<int> bytes) {
final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
return QueryParamsRequest(
subspace: decode.getString<String?>(1),
key: decode.getString<String?>(2),
);
}