ColumnHeader constructor

const ColumnHeader({
  1. bool empty = false,
  2. String? text,
  3. AlignmentGeometry alignment = Alignment.centerLeft,
  4. bool showFilter = false,
  5. bool showOrderBy = false,
  6. TextAlign textAlign = TextAlign.start,
  7. Color? backgroundColor,
  8. Color? foregroundColor,
  9. TextStyle? textStyle,
})

Implementation

const ColumnHeader({
  this.empty = false,
  this.text,
  this.alignment = Alignment.centerLeft,
  this.showFilter = false,
  this.showOrderBy = false,
  this.textAlign = TextAlign.start,
  this.backgroundColor,
  this.foregroundColor,
  this.textStyle,
});