agencyUrl property

String get agencyUrl

Get agency URL

Returns

  • Agency URL of the route segment.

Throws

  • An exception if it fails.

Implementation

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

  return resultString['result'];
}