TableRow constructor

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

Implementation

const TableRow({
  required this.children,
  this.repeat = false,
  this.verticalAlignment,
  this.decoration,
});