pile_nav_new/lib/pages/history/table_col.dart
2024-11-06 17:23:29 +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,
);
}