jumpToNext method

Future<void> jumpToNext()

This function is to jump to next id.

Implementation

Future<void> jumpToNext() async {
  Function _function = (double offset) {
    scrollController!.jumpTo(offset);
  };
  _scroll(id: _getNextId(number: 1), scrollFunction: _function);
}