focusAndMeterAt method

Future<void> focusAndMeterAt(
  1. Offset point
)

Focus and meter at the same normalized point, the usual tap-to-focus.

Implementation

Future<void> focusAndMeterAt(Offset point) async {
  await setFocusPoint(point);
  await setExposurePoint(point);
}