removeMarkers method

Future<bool?> removeMarkers(
  1. List<int> markerIds
)

Implementation

Future<bool?> removeMarkers(List<int> markerIds) async {
  return _methodChannel.invokeMethod(
      MethodChannelEvent.removeMarkers, {'markerIds': markerIds});
}