S360fDataTable constructor
const
S360fDataTable({
- required List<
DataColumn> columns, - required List<
DataRow> rows, - required int currentPage,
- required int totalItems,
- required void onPageChanged(),
- void onSelect(
- bool?
- void onChanged()?,
- int sortColumnIndex = 0,
- bool sortAscending = true,
- Widget filterBuilder()?,
- Widget settingsBuilder()?,
- List<
Widget> ? actions, - String? searchValue,
- Key? key,
Implementation
const S360fDataTable({
required this.columns,
required this.rows,
required this.currentPage,
required this.totalItems,
required this.onPageChanged,
this.onSelect,
this.onChanged,
this.sortColumnIndex = 0,
this.sortAscending = true,
this.filterBuilder,
this.settingsBuilder,
this.actions,
this.searchValue,
super.key,
});