rtcRawEvents property

Stream<Map<String, dynamic>> get rtcRawEvents

A broadcast stream of raw NERtc events forwarded by the desktop bridge.

Each event is a Map containing at minimum an "event" key holding the NERtc callback name (e.g. "onRemoteVideoReceiveSizeChanged"). The remaining keys are event-specific fields decoded from the bridge JSON.

On non-desktop platforms this stream never emits. Subscribe using where((e) => e['event'] == 'myEvent') to filter by event name.

Implementation

Stream<Map<String, dynamic>> get rtcRawEvents;