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