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. Map<String, String>? headers,
  9. Function? onLoad,
  10. int? pageSize,
  11. bool includeChild = false,
  12. bool? isSearching,
})

Implementation

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