Eventreflex_base.event.EventAn event that describes any state change in the app.FieldsPropDescriptionname: strThe event name.router_data: dict[str, Any] = {}The routing data where event occurred.payload: dict[str, Any] = {}The event payload.MethodsSignatureDescriptionfrom_event_type(events: Optional[IndividualEventType | list[IndividualEventType]], *, router_data: Optional[dict[str, Any]] = None) -> list[Event]Create a list of Events from event-like objects.