agencyName property

String get agencyName

Get agency name

Returns

  • Agency name of the route segment.

Throws

  • An exception if it fails.

Implementation

String get agencyName {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'PTRouteSegment',
    'getAgencyName',
  );

  return resultString['result'];
}