TableRow constructor

TableRow(
  1. Iterable<String?> _columns,
  2. int rowIndex, {
  3. required bool isHeaderRow,
})

Implementation

TableRow(
  this._columns,
  this.rowIndex, {
  required this.isHeaderRow,
});