turnLeft method
Turn the camera to the left by range
from the user with userId
.
Rotation range, 10 <= range <= 100.
Return ZoomVideoSDKError_Success
if the function succeeds.
Implementation
@override
Future<String> turnLeft(String userId, num range) async {
var params = <String, dynamic>{};
params.putIfAbsent("userId", () => userId);
params.putIfAbsent("range", () => range);
return await methodChannel
.invokeMethod<String>('turnLeft', params)
.then<String>((String? value) => value ?? "");
}