QueryViewBatchRequest.deserialize constructor
Implementation
factory QueryViewBatchRequest.deserialize(List<int> bytes) {
final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
return QueryViewBatchRequest(
requests:
decode
.getListOfBytes(1)
.map((b) => QueryViewRequest.deserialize(b))
.toList(),
);
}