TableHeaderModel constructor

TableHeaderModel({
  1. required String field,
  2. String? fieldColor,
  3. int? backgroundColor,
  4. required String title,
  5. String format = TableViewTypeValue.text,
  6. double width = 0,
  7. double fontSize = 12.0,
})

Implementation

TableHeaderModel({
  required this.field,
  this.fieldColor,
  this.backgroundColor,
  required this.title,
  this.format = TableViewTypeValue.text,
  this.width = 0,
  this.fontSize = 12.0,
});