OrderBy constructor

OrderBy({
  1. String? fieldName,
  2. String? orderType,
  3. String? sortOrder,
})

Implementation

OrderBy({
  this.fieldName,
  this.orderType,
  this.sortOrder,
});