TableCell constructor

TableCell({
  1. int? columnSpan,
  2. TableCellLocation? location,
  3. int? rowSpan,
  4. TableCellProperties? tableCellProperties,
  5. TextContent? text,
})

Implementation

TableCell({
  this.columnSpan,
  this.location,
  this.rowSpan,
  this.tableCellProperties,
  this.text,
});