removeDirection method

  1. @override
void removeDirection(
  1. dynamic origin,
  2. dynamic destination
)
override

Removes a direction from the map by given origin and destination coordinates.

origin and destination are dynamic due to following variations:

  • LatLng, better use GeoCoord, it will be converted into LatLng
  • Place
  • String

Implementation

@override
void removeDirection(origin, destination) => throw UnimplementedError();