Cluster constructor

const Cluster({
  1. required String id,
  2. double zIndex = 0.0,
  3. String? description,
  4. LatLng? position,
  5. Anchor? anchor,
  6. Set<Marker>? markers,
  7. ClusterIcon? icon,
  8. VoidCallback? onTap,
})

Implementation

const Cluster({
  required this.id,
  this.zIndex = 0.0,
  this.description,
  this.position,
  this.anchor,
  this.markers,
  this.icon,
  this.onTap,
});