BasicTableCellHeader constructor

const BasicTableCellHeader(
  1. String text, {
  2. bool? sortable,
  3. EdgeInsets? padding,
  4. AlignmentGeometry? align,
  5. Color? background,
  6. TextAlign? textAlign,
  7. TextOverflow? textOverflow,
  8. TextStyle? textStyle,
  9. Key? key,
})

Implementation

const BasicTableCellHeader(
  super.text, {
  bool? sortable,
  super.padding,
  AlignmentGeometry? align,
  super.background,
  super.textAlign,
  super.textOverflow,
  super.textStyle,
  super.key,
})  : _sortable = sortable ?? false,
      super(
        align: align ?? Alignment.bottomLeft,
      );