stopTracking method

Future<void> stopTracking()

Stops the ongoing gaze tracking process.

Use this function to halt the gaze tracking operation. Before calling this function, ensure that you have initialized the gaze tracker using the initGazeTracker function.

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> stopTracking() async {
  SeeSoPlatform.instance.stopTracking();
}