setCameraFocusPosition method Null safety
设置摄像头焦点。
参数:
x 对焦位置 x 坐标
y 对焦位置 y 坐标
Implementation
Future<void> setCameraFocusPosition(int x, int y) {
return _channel.invokeMethod('setCameraFocusPosition', {
"x": x,
"y": y,
});
}
设置摄像头焦点。
参数:
x 对焦位置 x 坐标
y 对焦位置 y 坐标
Future<void> setCameraFocusPosition(int x, int y) {
return _channel.invokeMethod('setCameraFocusPosition', {
"x": x,
"y": y,
});
}