DataTableCell constructor

const DataTableCell(
  1. String value, {
  2. int columnSpan = 1,
  3. TextAlign textAlign = TextAlign.left,
  4. Style? style,
})

Creates a table cell.

Implementation

const DataTableCell(
  this.value, {
  this.columnSpan = 1,
  this.textAlign = TextAlign.left,
  this.style,
}) : assert(columnSpan > 0);