from property

Coordinates get from

Start coordinate of the traffic event on the route.

Returns

  • Coordinates: the route-relative start coordinate for this event.

Also see:

  • to — end coordinate of the traffic event on the route.

Implementation

Coordinates get from {
  final OperationResult resultString = objectMethod(
    pointerId,
    'RouteTrafficEvent',
    'getFrom',
  );

  return Coordinates.fromJson(resultString['result']);
}