ODataQuery constructor

ODataQuery({
  1. String? search,
  2. Filter? filter,
  3. OrderBy? orderBy,
  4. List<String>? select,
  5. List<String>? expand,
  6. int? top,
  7. int? skip,
  8. bool? count,
})

Implementation

ODataQuery({
  this.search,
  this.filter,
  this.orderBy,
  this.select,
  this.expand,
  this.top,
  this.skip,
  this.count,
});