StandardGrid<T> constructor
const
StandardGrid<T> ({
- required String title,
- required List<
String> headers, - required List<
List< data,Widget> > - required List<
int> highlightedIndices, - List<
TableAction< rowActions()?,T> > - List<
T> ? items, - ExpandableContentFetcher? onExpandRow,
- MobileViewBuilder? mobileViewBuilder,
- bool? useWideCol,
- bool? isSelectable = false,
- SelectionChangedHandler? onSelectionChanged,
- 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,
});