next method

Future<void> next()

Skip to the next song in the queue.

Implementation

Future<void> next() async {
  await playerChannel.invokeMethod('next');
}