SpanningTableRow constructor

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

Implementation

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