getRowHeight method

double getRowHeight(
  1. int index
)

Gets the height of a specific row.

Parameters:

  • index (int, required): Row index.

Returns: double — row height in pixels.

Implementation

double getRowHeight(int index) {
  return _rowHeights?[index] ?? _defaultRowHeight;
}