FreedomTableCell constructor

const FreedomTableCell({
  1. Key? key,
  2. Widget? child,
  3. CellType type = CellType.body,
  4. required double width,
  5. double? height,
  6. int colspan = 1,
  7. int rowspan = 1,
  8. bool isFirstCellInRow = false,
})

Implementation

const FreedomTableCell({
  super.key,
  this.child,
  this.type = CellType.body,
  required this.width,
  this.height,
  this.colspan = 1,
  this.rowspan = 1,
  this.isFirstCellInRow = false,
});