removeMarker method
Remove the markers with the given markerIds from the map.
Implementation
@override
Future<bool?> removeMarker({required List<int> markerIds}) async {
return await methodChannel.invokeMethod<bool>(
Events.removeMarker,
{
'markerIds': markerIds,
},
);
}