DataColumn constructor
- required Widget label,
- String? tooltip,
- bool numeric = false,
- DataColumnSortCallback? onSort,
- MaterialStateProperty<
MouseCursor?> ? mouseCursor, - MainAxisAlignment? headingRowAlignment,
Creates the configuration for a column of a DataTable.
Implementation
const DataColumn({
required this.label,
this.tooltip,
this.numeric = false,
this.onSort,
this.mouseCursor,
this.headingRowAlignment,
});