name property

String get name

Get name

Returns

  • Name of the route segment.

Throws

  • An exception if it fails.

Implementation

String get name {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'PTRouteSegment',
    'getName',
  );

  return resultString['result'];
}