impactZone property

TrafficEventImpactZone get impactZone

Impact zone type for the event.

Indicates whether the event affects a path (road geometry) or a broader area.

Returns

Implementation

TrafficEventImpactZone get impactZone {
  final OperationResult resultString = objectMethod(
    pointerId,
    'TrafficEvent',
    'getImpactZone',
  );

  return TrafficEventImpactZoneExtension.fromId(resultString['result']);
}