hasSameShieldLevel property

bool get hasSameShieldLevel

Whether the shield has the same level as the parent road.

This flag is meaningful for road code items and indicates if the shield's importance matches the road the signpost is attached to.

Returns

  • bool: true when the shield level matches the parent road; otherwise false.

Implementation

bool get hasSameShieldLevel {
  final OperationResult resultString = objectMethod(
    pointerId,
    'SignpostItem',
    'hasSameShieldLevel',
  );

  return resultString['result'];
}