stopVoiceTalk static method

Future<bool> stopVoiceTalk()

停止对讲

Implementation

static Future<bool> stopVoiceTalk() async {
  bool result = await _channel.invokeMethod("stop_voice_talk");
  return result;
}