Code cleanup

This commit is contained in:
Hillel Coren 2023-06-01 23:06:19 +03:00
parent 1cee87a614
commit 3e9a2c762f
1 changed files with 0 additions and 9 deletions

View File

@ -280,15 +280,6 @@ class AppPaginatedDataTableState extends State<AppPaginatedDataTable> {
widget.onPageChanged(_firstRowIndex);
}
DataRow _getBlankRowFor(int index) {
return DataRow.byIndex(
index: index,
cells: widget.columns
.map<DataCell>((DataColumn column) => DataCell.empty)
.toList(),
);
}
DataRow _getProgressIndicatorRowFor(int index) {
bool haveProgressIndicator = false;
final List<DataCell> cells =