next method

FutureOr<void> next()

Fetches the next paginated page.

Implementation

FutureOr<void> next() async {
  if (_chatRepository.hasNext.value) {
    Log.debug('next()', '$runtimeType');
    await _chatRepository.next();
  }
}