lineBlockID property

int get lineBlockID

Get line block ID of the route segment

Returns

  • Line block ID of the route segment.

Throws

  • An exception if it fails.

Implementation

int get lineBlockID {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'PTRouteSegment',
    'getLineBlockID',
  );

  return resultString['result'];
}