DomEventType enum
Type of DOM event.
Values
- click → const DomEventType
-
const DomEventType('click') - doubleClick → const DomEventType
-
const DomEventType('dblclick') - change → const DomEventType
-
const DomEventType('change') - input → const DomEventType
-
const DomEventType('input') - submit → const DomEventType
-
const DomEventType('submit') - keyUp → const DomEventType
-
const DomEventType('keyup') - keyDown → const DomEventType
-
const DomEventType('keydown') - keyPress → const DomEventType
-
const DomEventType('keypress') - drag → const DomEventType
-
const DomEventType('drag') - dragEnd → const DomEventType
-
const DomEventType('dragend') - dragEnter → const DomEventType
-
const DomEventType('dragenter') - dragLeave → const DomEventType
-
const DomEventType('dragleave') - dragOver → const DomEventType
-
const DomEventType('dragover') - dragStart → const DomEventType
-
const DomEventType('dragstart') - drop → const DomEventType
-
const DomEventType('drop') - mouseDown → const DomEventType
-
const DomEventType('mousedown') - mouseEnter → const DomEventType
-
const DomEventType('mouseenter') - mouseLeave → const DomEventType
-
const DomEventType('mouseleave') - mouseMove → const DomEventType
-
const DomEventType('mousemove') - mouseOver → const DomEventType
-
const DomEventType('mouseover') - mouseOut → const DomEventType
-
const DomEventType('mouseout') - mouseUp → const DomEventType
-
const DomEventType('mouseup')
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - nativeName → String
-
final
- 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
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
DomEventType> - A constant List of the values in this enum, in order of their declaration.