referencePoint property
Central reference point for the event.
Returns
- Coordinates: the event reference point (may be
(0,0)for area events).
Also see:
- area — precise geographic area of the event, in case of area-based events.
Implementation
Coordinates get referencePoint {
final OperationResult resultString = objectMethod(
pointerId,
'TrafficEvent',
'getReferencePoint',
);
return Coordinates.fromJson(resultString['result']);
}