isStationWalk property
Is station walk route segment
Returns
- True if the route segment is station walk, false otherwise.
Throws
- An exception if it fails.
Implementation
bool get isStationWalk {
final OperationResult resultString = objectMethod(
_pointerId,
'PTRouteSegment',
'isStationWalk',
);
return resultString['result'];
}