routeUrl property

String get routeUrl

URL with more information about this route segment or trip.

Returns

  • String: The route URL or an empty string if not available.

Implementation

String get routeUrl {
  final OperationResult resultString = objectMethod(
    pointerId,
    'PTRouteSegment',
    'getRouteUrl',
  );

  return resultString['result'];
}