DataSourceRF<Object> constructor

DataSourceRF<Object>({
  1. List<Object>? modelList,
  2. SourceType type = SourceType.local,
  3. String where = '',
  4. String select = '',
  5. String orderField = '',
  6. String order = 'desc',
  7. String groupBy = '',
  8. Function? onLoad,
  9. int? pageSize,
  10. bool includeChild = false,
})

Implementation

DataSourceRF({
  this.modelList,
  this.type = SourceType.local,
  this.where = '',
  this.select = '',
  this.orderField = '',
  this.order = 'desc',
  this.groupBy = '',
  this.onLoad,
  this.pageSize,
  this.includeChild = false,
});