EventPublisher class
Routes SDK events to appropriate destinations.
Mirrors iOS pattern where:
- Public events go to EventBus (Dart streams)
- Analytics events go to C++ telemetry via DartBridge FFI
Usage:
EventPublisher.shared.track(LLMEvent.generationCompleted(...));
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
track(
SDKEvent event) → void - Track an event. Routes automatically based on event.destination.
-
trackAsync(
SDKEvent event) → Future< void> - Track an event asynchronously (for use in async contexts).
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Properties
-
Shared instance
final