setFocusPoint method
Sets the focus point of the camera.
x
: The x-coordinate of the focus point.y
: The y-coordinate of the focus point.
Returns a Future that completes with a boolean indicating whether the focus point was set successfully.
Implementation
Future<bool?> setFocusPoint(double x, double y) async {
return await broadcater.setFocusPoint(x, y);
}