KinMapMarker constructor

const KinMapMarker({
  1. required KinLatLng position,
  2. String? label,
  3. IconData icon = Icons.location_on_rounded,
  4. Color? color,
  5. VoidCallback? onTap,
})

Implementation

const KinMapMarker({
  required this.position,
  this.label,
  this.icon = Icons.location_on_rounded,
  this.color,
  this.onTap,
});