TravelMode enum
Constructors
- TravelMode()
-
const
Values
- driving → const TravelMode
-
const TravelMode(0)
- walking → const TravelMode
-
const TravelMode(1)
- bicycling → const TravelMode
-
const TravelMode(2)
- transit → const TravelMode
-
const TravelMode(3)
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent 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<
TravelMode> -
A constant List of the values in this enum, in order of their declaration.
[driving, walking, bicycling, transit]