startTracking method

Future<void> startTracking()

Starts the gaze tracking process.

Initiates the process of tracking the user's gaze. Prior to calling this function, make sure to 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> startTracking() async {
  SeeSoPlatform.instance.startTracking();
}