CustomMarker constructor

const CustomMarker({
  1. required List<Location> locations,
  2. required String icon,
  3. MarkerAnchor? anchor,
})

Implementation

const CustomMarker({
  required List<Location> locations,
  required this.icon,
  this.anchor,
}) : super._(locations);