previous method
Skip to the previous song in the queue.
Implementation
Future<bool> previous() async {
if(Platform.isIOS){
try{
var result = await playerChannel.invokeMethod('previous');
return result;
} catch(e){
print(e);
return false;
}
}
}