getRowHeight method

double getRowHeight(
  1. int rowIndex
)

returns height of row index

Implementation

double getRowHeight(int rowIndex) {
  if (_rowHeights.containsKey(rowIndex)) {
    return _rowHeights[rowIndex]!;
  }
  return _defaultRowHeight!;
}