TableCell constructor

const TableCell({
  1. Key? key,
  2. int rowSpan = 1,
  3. int columnSpan = 1,
  4. required Widget child,
})

Creates a widget that controls the row-span and column-span of a child of TablePane.

Implementation

const TableCell({
  Key? key,
  this.rowSpan = 1,
  this.columnSpan = 1,
  required Widget child,
}) : assert(rowSpan > 0),
     assert(columnSpan > 0),
     super(key: key, child: child);