EditableTableHeader constructor

const EditableTableHeader({
  1. Key? key,
  2. required List<ColumnEntity> columnsEntity,
  3. required double headerWidth,
  4. Border? headerBorder,
  5. TextStyle? headerTextStyle,
  6. EdgeInsetsGeometry? headerContentPadding,
  7. Color? headerBackgroundColor,
})

Implementation

const EditableTableHeader({
  Key? key,
  required this.columnsEntity,
  required this.headerWidth,
  this.headerBorder,
  this.headerTextStyle,
  this.headerContentPadding,
  this.headerBackgroundColor,
}) : super(key: key);