ColumnHeaderModel<T> constructor

ColumnHeaderModel<T>({
  1. int? id,
  2. required String slug,
  3. required String label,
  4. int orderNumber = -1,
  5. TextAlign? textAlign,
  6. double? fixedWidth,
  7. RowFieldWidgetType columnType = RowFieldWidgetType.textWidget,
  8. T? otherData,
})

constuctor

Implementation

ColumnHeaderModel({
  this.id,
  required this.slug,
  required this.label,
  this.orderNumber = -1,
  this.textAlign,
  this.fixedWidth,
  this.columnType = RowFieldWidgetType.textWidget,
  this.otherData
});