resumeAudio method

Future<V2TXLiveCode> resumeAudio()

Resume the audio stream

Return:

'0' success, more information please see V2TXLiveCode

Implementation

Future<V2TXLiveCode> resumeAudio() async {
  var result = await _channel.invokeMethod('resumeAudio', {});
  return _liveCodeWithResult(result);
}