removeAttentionRegion method

Future<void> removeAttentionRegion()

Removes the currently set region of interest (ROI) for the Attention feature in the SeeSo SDK.

Use this function to remove the currently set region of interest (ROI) for the Attention feature in the SeeSo SDK. After removal, attention-related information will not be provided.

Note: Before calling this function, ensure that the gaze tracker has been properly initialized and camera permission is granted. Otherwise, a PlatformException may be thrown.

Implementation

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