NsgDataRequestParams constructor

NsgDataRequestParams({
  1. int top = 0,
  2. int count = 0,
  3. Map<String, dynamic>? params,
  4. String? sorting,
  5. List<String>? referenceList,
  6. bool showDeletedObjects = false,
  7. NsgCompare? compare,
})

Implementation

NsgDataRequestParams({this.top = 0, this.count = 0, this.params, this.sorting, this.referenceList, this.showDeletedObjects = false, NsgCompare? compare}) {
  if (compare != null) {
    _compare = compare;
  }
}