stopMicTest method
Stop the microphone test.
Before calling this, you must have successfully started the microphone test by calling startMicTest.
Otherwise this returns an error.
Return ZoomVideoSDKError_Success
if the function succeeds. Otherwise, this function returns an error.
Implementation
@override
Future<String> stopMicTest() async {
return await methodChannel
.invokeMethod<String>('stopMicTest')
.then<String>((String? value) => value ?? "");
}