next method

Future<void> next()

Moves the vertical to a next Post.

Implementation

Future<void> next() async {
  Log.debug('next()', '$runtimeType');

  if (!hasNextPage.value) {
    return;
  }

  await vertical.nextPage(
    duration: Duration(milliseconds: 150),
    curve: Curves.ease,
  );
}