StandardGrid<T> constructor

const StandardGrid<T>({
  1. required String title,
  2. required List<String> headers,
  3. required List<List<Widget>> data,
  4. required List<int> highlightedIndices,
  5. List<TableAction<T>> rowActions(
    1. int
    )?,
  6. List<T>? items,
  7. ExpandableContentFetcher? onExpandRow,
  8. MobileViewBuilder? mobileViewBuilder,
  9. bool? useWideCol,
  10. bool? isSelectable = false,
  11. SelectionChangedHandler? onSelectionChanged,
  12. Key? key,
})

Implementation

const StandardGrid({
  required this.title,
  required this.headers,
  required this.data,
  required this.highlightedIndices,
  this.rowActions,
  this.items,
  this.onExpandRow,
  this.mobileViewBuilder,
  this.useWideCol,
  this.isSelectable = false,
  this.onSelectionChanged,
  super.key,
});