setCameraFocusPosition method Null safety
Set the camera focus position
Implementation
Future<int> setCameraFocusPosition(double x, double y) async {
IntValue reply =
await _api.setCameraFocusPosition(SetCameraFocusPositionRequest()
..x = x
..y = y);
return reply.value ?? -1;
}