TransportType enum
Описывает вид транспорта, для которого построен участок маршрута.
Values
- unknown → const TransportType
-
Неизвестно, как преодолеть данный участок маршрута, или он может быть непроходим.
const TransportType(0)
- bicycle → const TransportType
-
Велосипед.
const TransportType(1)
- car → const TransportType
-
Автомобиль.
const TransportType(2)
- pedestrian → const TransportType
-
Пешеход.
const TransportType(3)
- public → const TransportType
-
Общественный транспорт.
const TransportType(4)
- scooter → const TransportType
-
Самокат.
const TransportType(5)
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 - rawValue → int
-
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
Static Methods
-
getByValue(
int value) → TransportType
Constants
-
values
→ const List<
TransportType> - A constant List of the values in this enum, in order of their declaration.