removeMarkers method

Future<void> removeMarkers(
  1. List<String> idList
)

Removes the markers with given ids from the map.

The returned Future completes after the change has been made on the platform side.

Implementation

Future<void> removeMarkers(List<String> idList) async {
  await channel.invokeMethod<void>('markers#remove', <String, dynamic>{
    'idList': idList,
  });
}