BasicTableCellHeader.center constructor

const BasicTableCellHeader.center(
  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.center(
  String text, {
  bool? sortable,
  EdgeInsets? padding,
  AlignmentGeometry? align,
  Color? background,
  TextAlign? textAlign,
  TextOverflow? textOverflow,
  TextStyle? textStyle,
  Key? key,
}) : this(
        text,
        sortable: sortable,
        padding: padding,
        align: align ?? Alignment.bottomCenter,
        background: background,
        textAlign: textAlign ?? TextAlign.center,
        textOverflow: textOverflow,
        textStyle: textStyle,
        key: key,
      );