CustomTableColumn constructor

const CustomTableColumn({
  1. Key? key,
  2. String? text,
  3. double? width,
  4. double? height,
  5. int? flex,
  6. TextAlign? textAlign,
  7. TextStyle? textStyle,
  8. EdgeInsets? padding = const EdgeInsets.all(0),
  9. EdgeInsets? margin,
  10. Color? backgroundColor,
  11. Color? textColor,
  12. Function? onPressed,
  13. Widget? child,
  14. VisualDensity? visualDensity,
})

Implementation

const CustomTableColumn({
  super.key,
  super.text,
  super.width,
  super.height,
  super.flex,
  super.textAlign,
  super.textStyle,
  super.padding = const EdgeInsets.all(0),
  super.margin,
  super.backgroundColor,
  super.textColor,
  super.onPressed,
  super.child,
  super.visualDensity
});