isAntiArea property

bool get isAntiArea

Check if the impact zone is the anti-area of the event area. Valid only for area impact zone

Returns

True if the impact zone is the anti-area, false otherwise.

Implementation

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

  return resultString['result'];
}