withdrawSubSessionList method

  1. @override
Future<String> withdrawSubSessionList()

Withdraw the sub-session list (cancel uncommitted sub-session changes).
Note: Only the session host/manager can withdraw sub-session lists.
Return ZoomVideoSDKError_Success if the function succeeds. Otherwise, this function returns an error.

Implementation

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