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