nativeEventStream property
Expose broadcast stream for native events (real-time status updates for UI)
Implementation
static Stream<String> get nativeEventStream {
return _eventChannel
.receiveBroadcastStream()
.map((event) => event.toString())
.asBroadcastStream(); // allows multiple listeners to subscribe
}