Annotation constructor

const Annotation({
  1. String? title,
  2. String? subTitle,
  3. MarkerIcon? icon,
  4. VoidCallback? onTap,
  5. AnnotationType annotationType = AnnotationType.destination,
})

Implementation

const Annotation({
  this.title,
  this.subTitle,
  this.icon,
  this.onTap,
  this.annotationType = AnnotationType.destination,
});