removeMarker method

  1. @override
Future<bool?> removeMarker({
  1. required List<int> markerIds,
})
override

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,
    },
  );
}