TravelModes enum Null safety
Choices between modes of travel
Constructors
- TravelModes()
-
const
Values
- driving → const TravelModes
-
const TravelModes(0)
- bicycling → const TravelModes
-
const TravelModes(1)
- transit → const TravelModes
-
const TravelModes(2)
- walking → const TravelModes
-
const TravelModes(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<
TravelModes> -
A constant List of the values in this enum, in order of their declaration.
[driving, bicycling, transit, walking]