next method

Future<bool> next ()

Skip to the next song in the queue.

Implementation

Future<bool> next() async {
  if(Platform.isIOS){
    try{
      var result = await playerChannel.invokeMethod('next');
      return result;
    } catch(e){
      print(e);
      return false;
    }
  }
}