agencyFareUrl property

String get agencyFareUrl

URL where fares or tickets can be purchased for this operator.

Returns

  • String: Fare URL or empty string when not available.

Implementation

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

  return resultString['result'];
}