DialogType enum Null safety
Javascript dialog type.
Constructors
- DialogType(String value)
-
const
- DialogType.fromJson(String value)
-
factory
Values
- alert → const DialogType
-
DialogType('alert')
- confirm → const DialogType
-
DialogType('confirm')
- prompt → const DialogType
-
DialogType('prompt')
- beforeunload → const DialogType
-
DialogType('beforeunload')
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited
-
toJson(
) → String -
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
DialogType> -
A constant List of the values in this enum, in order of their declaration.
[alert, confirm, prompt, beforeunload]