scrollDown method

void scrollDown({
  1. double offset = kPagingScrollOffset,
})

Implementation

void scrollDown({double offset = kPagingScrollOffset}) {
  if (_reachedToBottom) {
    logger.fine('Reached to bottom');
    return;
  }
  animateTo(
    min(_maxScrollExtent, this.offset + offset),
    duration: kPagingScrollDuration,
    curve: _curve,
  );
}