stopSubSession method

  1. @override
Future<String> stopSubSession()

Stop the sub-session.
Note: Only the session host/manager can stop sub-sessions.
Return ZoomVideoSDKError_Success if the function succeeds. Otherwise, this function returns an error.

Implementation

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