removePolyline method
Removes the specified line
from the map. The line must be a current
member of the lines set.
Change listeners are notified once the line has been removed on the platform side.
The returned Future completes once listeners have been notified.
Implementation
Future<void> removePolyline(Line line) async {
await polylineManager!.remove(line);
notifyListeners();
}