Event class
- Implementers
- AnimationEvent
- AnimationPlaybackEvent
- ApplicationCacheErrorEvent
- AudioProcessingEvent
- BeforeInstallPromptEvent
- BeforeUnloadEvent
- BlobEvent
- ClipboardEvent
- CloseEvent
- ContextEvent
- CustomEvent
- DeviceMotionEvent
- DeviceOrientationEvent
- ErrorEvent
- ExtendableEvent
- FontFaceSetLoadEvent
- GamepadEvent
- HashChangeEvent
- KeyEvent
- MediaEncryptedEvent
- MediaKeyMessageEvent
- MediaQueryListEvent
- MediaStreamEvent
- MediaStreamTrackEvent
- MessageEvent
- MidiConnectionEvent
- MidiMessageEvent
- MutationEvent
- OfflineAudioCompletionEvent
- PageTransitionEvent
- PaymentRequestUpdateEvent
- PopStateEvent
- PresentationConnectionAvailableEvent
- PresentationConnectionCloseEvent
- ProgressEvent
- PromiseRejectionEvent
- RtcDataChannelEvent
- RtcDtmfToneChangeEvent
- RtcPeerConnectionIceEvent
- RtcTrackEvent
- SecurityPolicyViolationEvent
- SensorErrorEvent
- SpeechRecognitionError
- SpeechRecognitionEvent
- SpeechSynthesisEvent
- StorageEvent
- TrackEvent
- TransitionEvent
- UIEvent
- VersionChangeEvent
- VRDeviceEvent
- VRDisplayEvent
- VRSessionEvent
- Annotations
- @Native.new("Event,InputEvent,SubmitEvent")
Constructors
Properties
- bubbles→bool?
- no setter
- cancelable→bool?
- no setter
- composed→bool?
- no setter
- currentTarget→EventTarget?
- no setter
- defaultPrevented→bool
- no setter
- eventPhase→int
- no setter
- hashCode→int
- The hash code for this object.no setterinherited
- isTrusted→bool?
- no setter
- matchingTarget→Element
- A pointer to the element whose CSS selector matched within which an eventwas fired. If this Event was not associated with any Event delegation,accessing this value will throw anUnsupportedError.no setter
- path→List<
EventTarget> - no setter
- runtimeType→Type
- A representation of the runtime type of the object.no setterinherited
- target→EventTarget?
- no setter
- timeStamp→num?
- no setter
- type→String
- no setter
Methods
- composedPath(
)→List< EventTarget> - noSuchMethod(
Invocationinvocation)→ dynamic - Invoked when a nonexistent method or property is accessed.inherited
- preventDefault(
)→ void - stopImmediatePropagation(
)→ void - stopPropagation(
)→ void - toString(
)→String - A string representation of this object.inherited
Operators
- operator ==(
Objectother)→bool - The equality operator.inherited
Constants
- AT_TARGET→ constint
- This event is being handled by the event target.
- BUBBLING_PHASE→ constint
- This event is bubbling up through the target's ancestors.
- CAPTURING_PHASE→ constint
- This event is propagating through the target's ancestors, starting from thedocument.