toGoogleMapsMarkerSet static method

Set<Marker> toGoogleMapsMarkerSet(
  1. Set<Marker> markers
)

Implementation

static Set<googleMaps.Marker> toGoogleMapsMarkerSet(Set<Marker> markers) {
  List<googleMaps.Marker> _markers = <googleMaps.Marker>[];
  for (Marker marker in markers) {
    _markers.add(googleMapsMarkerFromMarker(marker));
  }
  return Set.from(_markers);
}