TableCell constructor

const TableCell({
  1. int columnSpan = 1,
  2. int rowSpan = 1,
  3. required Widget child,
  4. Color? backgroundColor,
  5. bool columnHover = false,
  6. bool rowHover = true,
  7. TableCellTheme? theme,
  8. bool enabled = true,
})

Implementation

const TableCell({
  this.columnSpan = 1,
  this.rowSpan = 1,
  required this.child,
  this.backgroundColor,
  this.columnHover = false,
  this.rowHover = true,
  this.theme,
  this.enabled = true,
});