requestForHelp method
Request help from the host/manager when in a sub-session.
Return ZoomVideoSDKError_Success if the function succeeds. Otherwise, this function returns an error.
Implementation
@override
Future<String> requestForHelp() async {
return await methodChannel
.invokeMethod<String>('requestForHelp')
.then<String>((String? value) => value ?? "");
}