isStationWalk property
bool
get
isStationWalk
Is this a station-walk segment.
Returns
bool:trueif the route segment is a station walk, otherwisefalse.
Implementation
bool get isStationWalk {
final OperationResult resultString = objectMethod(
pointerId,
'PTRouteSegment',
'isStationWalk',
);
return resultString['result'];
}