agencyFareUrl property

String get agencyFareUrl

Get agency fare URL

Returns

  • Agency fare URL of the route segment.

Throws

  • An exception if it fails.

Implementation

String get agencyFareUrl {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'PTRouteSegment',
    'getAgencyFareUrl',
  );

  return resultString['result'];
}