summary property

String get summary

Short textual summary of the segment (distance/time snippet).

Is influenced by the current SDK language setting.

Returns

  • String: human-readable summary for this segment.

Implementation

String get summary {
  final OperationResult resultString = objectMethod(
    pointerId,
    'RouteSegmentBase',
    'getSummary',
  );

  return resultString['result'];
}