setCameraFocusPositionInPreview method
Implementation
Future<int> setCameraFocusPositionInPreview(double x, double y) async {
Map<String, dynamic> arguments = {
'x': x,
'y': y,
};
int code = await _channel.invokeMethod('setCameraFocusPositionInPreview', arguments) ?? -1;
return code;
}