setFocusPoint method

Future<bool?> setFocusPoint(
  1. double x,
  2. double y
)

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);
}