summary property

String get summary
inherited

Get summary of the route segment.

Returns

  • The summary of the route segment.

Throws

  • An exception if it fails.

Implementation

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

  return resultString['result'];
}