removeWaypoint method
Remove a Waypoint from the service's data storage by its id.
For more information, see the navigation service docs.
Implementation
Future<void> removeWaypoint(String id, {Map<String, dynamic>? extra}) async {
final request = RemoveWaypointRequest(name: name, id: id, extra: extra?.toStruct());
await client.removeWaypoint(request, options: callOptions);
}