CustomTableHeader constructor

const CustomTableHeader({
  1. Key? key,
  2. required Map<String, CustomTableColumn> columns,
  3. Color? backgroundColor,
  4. Color? textColor,
  5. double? height,
  6. EdgeInsets? padding = const EdgeInsets.fromLTRB(16, 4, 16, 4),
  7. TextStyle? textStyle,
  8. BoxBorder? border,
  9. double radius = 0,
})

Implementation

const CustomTableHeader({
  super.key,
  required super.columns,
  super.backgroundColor,
  super.textColor,
  super.height,
  super.padding,
  super.textStyle,
  super.border,
  this.radius = 0
});