platformCode property

String get platformCode

Platform code for boarding/alighting at the stop associated with this segment.

Returns

  • String: Platform identifier or empty string if not available.

Implementation

String get platformCode {
  final OperationResult resultString = objectMethod(
    pointerId,
    'PTRouteSegment',
    'getPlatformCode',
  );

  return resultString['result'];
}