isAntiArea property

bool get isAntiArea

Whether an area-based event is an anti-area.

Valid only for TrafficEventImpactZone.area events. An anti-area means the defined area represents the region that is not affected by other area events.

Returns

  • bool: true when the impact zone is an anti-area, otherwise false.

Implementation

bool get isAntiArea {
  final OperationResult resultString = objectMethod(
    pointerId,
    'TrafficEvent',
    'isAntiarea',
  );

  return resultString['result'];
}