stickyHeight method

double stickyHeight(
  1. int i
)

Implementation

double stickyHeight(int i) =>
    (rowHeights != null ? rowHeights![i] : contentCellHeight) ??
    base.contentCellHeight!;