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