setExposurePoint method

Future<void> setExposurePoint(
  1. Offset? point
)

point is normalized to the preview: (0,0) top-left, (1,1) bottom-right.

Implementation

Future<void> setExposurePoint(Offset? point) async {
  if (!value.capabilities.exposurePoint) return;
  await _set("setExposurePoint", <String, Object?>{"x": point?.dx, "y": point?.dy});
}