WidgetColumnHeader constructor

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

Implementation

WidgetColumnHeader({
  bool empty = false,
  String? text,
  AlignmentGeometry alignment = Alignment.centerLeft,
  TextAlign textAlign = TextAlign.start,
  TextStyle? textStyle,
  Color? backgroundColor,
  Color? foregroundColor,
}) : super(
        text: text,
        alignment: alignment,
        backgroundColor: backgroundColor,
        empty: empty,
        foregroundColor: foregroundColor,
        showFilter: false,
        showOrderBy: false,
        textAlign: textAlign,
        textStyle: textStyle,
      );