agencyUrl property

String get agencyUrl

Agency website URL for fare and operator information.

Returns

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

Implementation

String get agencyUrl {
  final OperationResult resultString = objectMethod(
    pointerId,
    'PTRouteSegment',
    'getAgencyUrl',
  );

  return resultString['result'];
}