next method
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;
}
}
}