ConnectQueryPayload constructor

ConnectQueryPayload({
  1. required String instance,
  2. required String collection,
  3. Filter? filter,
  4. int? offset,
  5. int? limit,
  6. int? sortProperty,
  7. bool sortAsc = true,
})

Implementation

ConnectQueryPayload({
  required this.instance,
  required this.collection,
  this.filter,
  this.offset,
  this.limit,
  this.sortProperty,
  this.sortAsc = true,
});