skipToNext method

  1. @override
Future<void> skipToNext()
override

Skip to the next item in the queue.

Implementation

@override
Future<void> skipToNext() async {
  await _skip(1);
  await super.skipToNext();
}