GetRecordsOutput constructor

GetRecordsOutput({
  1. required List<Record> records,
  2. List<ChildShard>? childShards,
  3. int? millisBehindLatest,
  4. String? nextShardIterator,
})

Implementation

GetRecordsOutput({
  required this.records,
  this.childShards,
  this.millisBehindLatest,
  this.nextShardIterator,
});