area property
Geographic area associated with the event.
If the impact zone is path the returned area is typically the
boundingBox. For area impact zones the returned value is the more
precise geographic area used to define the event.
Returns
- GeographicArea: geographic area of the event.
Implementation
GeographicArea get area {
final OperationResult resultString = objectMethod(
pointerId,
'TrafficEvent',
'getArea',
);
return GeographicArea.fromJson(resultString['result']);
}