List<Decoration> rowDecorations

The decorations to use for each row of the table.

Row decorations fill the horizontal and vertical extent of each row in the table, unlike decorations for individual cells, which might not fill either.

Source

List<Decoration> get rowDecorations => new List<Decoration>.unmodifiable(_rowDecorations ?? const <Decoration>[]);
void rowDecorations=(List<Decoration> value)

Source

set rowDecorations(List<Decoration> value) {
  if (_rowDecorations == value)
    return;
  _rowDecorations = value;
  if (_rowDecorationPainters != null) {
    for (BoxPainter painter in _rowDecorationPainters)
      painter?.dispose();
  }
  _rowDecorationPainters = _rowDecorations != null ? new List<BoxPainter>(_rowDecorations.length) : null;
}