unmuteAllAudio method
Ask unmute all user's audio. Only host or manager can ask unmute all user's audio. This functinon will trigger the callback onHostAskUnmute()
.
Return ZoomVideoSDKError_Success
if the function succeeds. Otherwise, this function returns an error.
Implementation
@override
Future<String> unmuteAllAudio() async {
return await methodChannel
.invokeMethod<String>('unmuteAllAudio')
.then<String>((String? value) => value ?? "");
}