lineFrom property

String get lineFrom

Get line from

Returns

  • Line from of the route segment.

Throws

  • An exception if it fails.

Implementation

String get lineFrom {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'PTRouteSegment',
    'getLineFrom',
  );

  return resultString['result'];
}