isStationWalk property

bool get isStationWalk

Is this a station-walk segment.

Returns

  • bool: true if the route segment is a station walk, otherwise false.

Implementation

bool get isStationWalk {
  final OperationResult resultString = objectMethod(
    pointerId,
    'PTRouteSegment',
    'isStationWalk',
  );

  return resultString['result'];
}