TableHeaderCellModel constructor
TableHeaderCellModel(
- WidgetModel parent,
- String? id, {
- String? field,
- dynamic width,
- dynamic height,
- dynamic sortbydefault,
Implementation
TableHeaderCellModel(WidgetModel parent, String? id, {String? field, dynamic width, dynamic height, dynamic sortbydefault}) : super(parent, id)
{
if (width != null) this.width = width;
if (height != null) this.height = height;
this.sortbydefault = sortbydefault;
sortAscending = false;
}