Callout constructor

const Callout({
  1. required String id,
  2. required LatLng position,
  3. AnnotationType? annotationType,
  4. MarkerIcon? icon,
  5. double zIndex = 0.0,
  6. List<String>? texts,
  7. void onTap()?,
  8. Anchor? anchor,
})

Implementation

const Callout({
  required this.id,
  required this.position,
  this.annotationType,
  this.icon,
  this.zIndex = 0.0,
  this.texts,
  this.onTap,
  this.anchor,
});