agencyPhone property

String get agencyPhone

Contact phone number for the agency operating this segment.

Returns

  • String: Phone number or empty string when not provided.

Implementation

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

  return resultString['result'];
}