play method

Future<bool> play ()

Play the most recent queue.

Implementation

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