previous method

Future<void> previous()

Skip to the previous song in the queue.

Implementation

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