startSubSession method
Start the sub-session.
Note: Only the session host/manager can start sub-sessions.
Return ZoomVideoSDKError_Success if the function succeeds. Otherwise, this function returns an error.
Implementation
@override
Future<String> startSubSession() async {
return await methodChannel
.invokeMethod<String>('startSubSession')
.then<String>((String? value) => value ?? "");
}