platformCode property

String get platformCode

Get platform code

Returns

  • Platform code of the route segment.

Implementation

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

  return resultString['result'];
}