setDefaultRowHeight method

void setDefaultRowHeight([
  1. double rowHeight = _excelDefaultRowHeight
])

Set the default row height.

If both setDefaultRowHeight and setDefaultColumnWidth are not called, then the default row height and column width will be set by Excel.

The default row height is 15.0 and the default column width is 8.43.

Implementation

void setDefaultRowHeight([double rowHeight = _excelDefaultRowHeight]) {
  if (rowHeight < 0) return;
  _defaultRowHeight = rowHeight;
}