isSignificant property

bool get isSignificant

Is significant route segment

Returns

  • True if the route segment is significant, false otherwise.

Throws

  • An exception if it fails.

Implementation

bool get isSignificant {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'PTRouteSegment',
    'isSignificant',
  );

  return resultString['result'];
}