MapMarker constructor

const MapMarker({
  1. required String id,
  2. required MapLocation location,
  3. required String title,
})

Implementation

const MapMarker({
  required this.id,
  required this.location,
  required this.title,
});