removePolylines method
Remove polylines from the map view.
Throws PolylineNotFoundException if the polylines list contains
polyline that has not beed added to the map view via addPolylines or
contains polyline that has already been removed from the map view.
Implementation
Future<void> removePolylines(List<Polyline> polylines) async {
return GoogleMapsNavigationPlatform.instance.viewAPI.removePolylines(
viewId: _viewId,
polylines: polylines,
);
}