requestControlRemoteCamera method
Request to control remote camera from the user with userId
.
Return ZoomVideoSDKError_Success
if the function succeeds.
Implementation
@override
Future<String> requestControlRemoteCamera(String userId) async {
var params = <String, dynamic>{};
params.putIfAbsent("userId", () => userId);
return await methodChannel
.invokeMethod<String>('requestControlRemoteCamera', params)
.then<String>((String? value) => value ?? "");
}