stopAudioDump method

Future<int> stopAudioDump()

结束音频dump

Implementation

Future<int> stopAudioDump() async {
  IntValue reply = await _api.stopAudioDump();
  return reply.value ?? -1;
}