GroupValue constructor

GroupValue({
  1. String? nextBatch,
  2. int? order,
  3. List<String>? results,
})

Implementation

GroupValue({
  this.nextBatch,
  this.order,
  this.results,
});