startAudio method
Start audio with voip
Return ZoomVideoSDKError_Success
if the function succeeds. Otherwise, this function returns an error.
Implementation
@override
Future<String> startAudio() async {
return await methodChannel
.invokeMethod<String>('startAudio')
.then<String>((String? value) => value ?? "");
}