getStatusEvent method

Stream getStatusEvent()

Retrieves a stream of status events for tracking status information.

This function returns a stream that provides status information about whether SeeSo has started or stopped gaze tracking through StatusEvent objects. Consumers of the stream can receive and process updates about tracking status.

Implementation

Stream<dynamic> getStatusEvent() {
  return SeeSoPlatform.instance.getStatusEventStream();
}