referencePoint property
Gets the traffic event reference point
Returns
- The reference point. Returns (0,0) if the event is a TrafficEventImpactZone.area.
Throws
- An exception if it fails.
Implementation
Coordinates get referencePoint {
final OperationResult resultString = objectMethod(
_pointerId,
'TrafficEvent',
'getReferencePoint',
);
return Coordinates.fromJson(resultString['result']);
}