TableRow constructor

const TableRow({
  1. List<Widget> children = const <Widget>[],
  2. bool repeat = false,
  3. BoxDecoration? decoration,
  4. TableCellVerticalAlignment? verticalAlignment,
})

TableRow API.

Implementation

const TableRow({
  this.children = const <Widget>[],
  this.repeat = false,
  this.decoration,
  this.verticalAlignment,
});