resumeAudio method

Future<V2TXLiveCode> resumeAudio()

恢复推流器的音频流

返回值:

0 成功,更多信息请查看 V2TXLiveCode

Implementation

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