getUserStatusEvent method

Stream getUserStatusEvent()

Retrieves a stream of user status events for attention, blink, and drowsiness information.

This function returns a stream that provides user status information, including attention, blink, and drowsiness events, through UserStatusEvent objects. Consumers of the stream can receive and process updates about these user status events.

Implementation

Stream<dynamic> getUserStatusEvent() {
  return SeeSoPlatform.instance.getUserStatusEventChannel();
}