summary property

String get summary

Get the summary of the route.

Returns

  • A summary of the route, including key metrics and descriptions.

Implementation

String get summary {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'RouteBase',
    'getSummary',
  );

  return resultString['result'];
}