joinSubSessionByUserRequest method

  1. @override
Future<String> joinSubSessionByUserRequest()

Join the sub-session where a user has requested help.
Note: Only the session host/manager can use this function.
Return ZoomVideoSDKError_Success if the function succeeds. Otherwise, this function returns an error.

Implementation

@override
Future<String> joinSubSessionByUserRequest() async {
  return await methodChannel
      .invokeMethod<String>('joinSubSessionByUserRequest')
      .then<String>((String? value) => value ?? "");
}