GridSlots<T> constructor

const GridSlots<T>({
  1. Widget loadingState(
    1. BuildContext
    )?,
  2. Widget errorState(
    1. BuildContext,
    2. String error,
    3. VoidCallback onRetry
    )?,
  3. Widget emptyState(
    1. BuildContext,
    2. GridEmptyContext
    )?,
  4. Widget toolbar(
    1. BuildContext,
    2. GridTableState<T>
    )?,
  5. Widget pagination(
    1. BuildContext,
    2. GridTableState<T>
    )?,
  6. Widget bulkActionBar(
    1. BuildContext,
    2. GridTableState<T>
    )?,
  7. Widget aggregationFooter(
    1. BuildContext,
    2. GridTableState<T>
    )?,
  8. Widget rowLeading(
    1. BuildContext,
    2. RowModel<T> row
    )?,
  9. Widget rowTrailing(
    1. BuildContext,
    2. RowModel<T> row
    )?,
})

Implementation

const GridSlots({
  this.loadingState,
  this.errorState,
  this.emptyState,
  this.toolbar,
  this.pagination,
  this.bulkActionBar,
  this.aggregationFooter,
  this.rowLeading,
  this.rowTrailing,
});