agencyPhone property

String get agencyPhone

Get agency phone

Returns

  • Agency phone of the route segment.

Throws

  • An exception if it fails.

Implementation

String get agencyPhone {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'PTRouteSegment',
    'getAgencyPhone',
  );

  return resultString['result'];
}