scrollOffItemEnd method

double scrollOffItemEnd(
  1. int index
)

scrollOfItemBottom return the offset when the item is placed at the bottom of the screen.

Implementation

double scrollOffItemEnd(int index) {
  return (index + 1) * scrollPerItem - inside;
}