rowHeightMode property

RowHeight? rowHeightMode

Implementation

RowHeight? get rowHeightMode {
  if (_cashedRowHeightMode == null && renderCells.isNotEmpty) {
    _cashedRowHeightMode = renderCells.first.rowHeightMode;
  }
  return _cashedRowHeightMode;
}