playAudio static method

Future<void> playAudio()

Implementation

static Future<void>playAudio() async {
  try{
    await _channel.invokeMethod('playAudio');
  }catch(e){
    throw Exception(e);
  }
}