pile_nav_new/lib/pages/history/tableCol.dart
2024-08-29 17:45:39 +08:00

12 lines
179 B
Dart

class TableCol {
String props;
String label;
double width;
Function(int, bool)? onSort;
TableCol(
this.props,
this.label,
this.width,
this.onSort,
);
}