QueryOutput constructor

QueryOutput({
  1. double? consumedCapacityUnits,
  2. int? count,
  3. List<Map<String, AttributeValue>>? items,
  4. Key? lastEvaluatedKey,
})

Implementation

QueryOutput({
  this.consumedCapacityUnits,
  this.count,
  this.items,
  this.lastEvaluatedKey,
});