CustomTableCell constructor

const CustomTableCell({
  1. Key? key,
  2. required CustomTableColumn attributesColumn,
  3. required CustomTableColumn attributesItem,
  4. TextStyle? textStyle,
  5. Color? backgroundColor,
  6. Color? textColor,
})

Implementation

const CustomTableCell({
  super.key,
  required this.attributesColumn,
  required this.attributesItem,
  super.textStyle,
  super.backgroundColor,
  super.textColor
});