removeMarker method
- String? title,
- required Coordinate position,
To Remove a marker by the given position and/or title
Implementation
Future<void> removeMarker({
String? title,
required Coordinate position,
}) async {
await _methodChannel.invokeMethod('removeMarker', {
"title": title,
"position": position.toMap(),
});
}