summary property
String
get
summary
Short textual summary of the route.
The summary typically contains key metrics such as total distance and estimated duration. Is influenced by the current SDK language setting.
Returns
String: a human-readable route summary.
Implementation
String get summary {
final OperationResult resultString = objectMethod(
pointerId,
'RouteBase',
'getSummary',
);
return resultString['result'];
}