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'];
}