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