DataTable constructor
const
DataTable({})
Creates a DataTable with the given columns and rows.
Implementation
const DataTable({
super.key,
required this.columns,
required this.rows,
this.sortColumnIndex,
this.sortAscending = true,
this.showCheckboxColumn = false,
});