removeRoad method

Future<void> removeRoad({
  1. required String roadKey,
})

removeRoad

delete road draw in the map using roadKey

Implementation

Future<void> removeRoad({required String roadKey}) async {
  await osmBaseController.removeRoad(roadKey: roadKey);
}