removeMarker method
Implementation
@override
Future<void> removeMarker({required String markerId}) async {
try {
await methodChannel.invokeMethod('removeMarker', {'markerId': markerId});
} on PlatformException catch (e) {
throw Exception("Failed to remove marker: '${e.message}'.");
}
}