12 lines
179 B
Dart
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,
|
|
);
|
|
} |