plugin/event_plugin library
Classes
- DefaultEventPlugin
- Default implementation of EventPlugin using the event_bus package.
- EventPlugin
- Base class for implementing event handling in Vyuh applications.
-
VyuhEvent<
T> - Base class for all events in a Vyuh application.
Typedefs
- DisposeFunction = void Function()
- A function that can be called to dispose of (cancel) an event subscription.
-
VyuhEventListener<
T extends VyuhEvent> = void Function(T event) -
A function that handles events of type
T
.