Cell constructor

const Cell(
  1. String content, {
  2. int columnSpan = 1,
  3. int rowSpan = 1,
  4. CellStyle? style,
})

Implementation

const Cell(this.content, {this.columnSpan = 1, this.rowSpan = 1, this.style});