jumpToBefore method

Future<void> jumpToBefore()

This function is to jump to before id.

Implementation

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