stopCalibration method

Future<void> stopCalibration()

Stops the ongoing calibration process in the SeeSo SDK.

Use this function to interrupt the ongoing calibration process in the SeeSo SDK. Any progress made before stopping will not be applied.

Note: If the camera permission is not granted or if the gaze tracker has not been properly initialized, a PlatformException may be thrown.

Implementation

Future<void> stopCalibration() async {
  SeeSoPlatform.instance.stopCalibration();
}