KeyGroupList constructor

KeyGroupList({
  1. required int maxItems,
  2. required int quantity,
  3. List<KeyGroupSummary>? items,
  4. String? nextMarker,
})

Implementation

KeyGroupList({
  required this.maxItems,
  required this.quantity,
  this.items,
  this.nextMarker,
});