jumpTo method

void jumpTo(
  1. int section,
  2. int row
)

Implementation

void jumpTo(int section, int row) {
  topIndex = IndexPath(section: section, row: row);
  animate = false;
  dirty = true;
  notifyListeners();
}