lineTowards property

String get lineTowards

Get line towards

Returns

  • Line towards of the route segment.

Throws

  • An exception if it fails.

Implementation

String get lineTowards {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'PTRouteSegment',
    'getLineTowards',
  );

  return resultString['result'];
}