clearMarkers method

Future<void> clearMarkers()

Clears all markers from the map.

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

Implementation

Future<void> clearMarkers() async {
  await channel.invokeMethod<void>('markers#clear');
}