ignoreUserHelpRequest method
Ignore a help request from a participant in a sub-session.
Note: Only the session host/manager can ignore help requests.
Return ZoomVideoSDKError_Success if the function succeeds. Otherwise, this function returns an error.
Implementation
@override
Future<String> ignoreUserHelpRequest() async {
return await methodChannel
.invokeMethod<String>('ignoreUserHelpRequest')
.then<String>((String? value) => value ?? "");
}