ItineraryCard constructor

const ItineraryCard({
  1. Key? key,
  2. required List<Marker> markers,
  3. required VoidCallback onTap,
  4. required String title,
})

Creates an ItineraryCard that shows a preview of a destination on the map

Implementation

const ItineraryCard({
  super.key,
  required this.markers,
  required this.onTap,
  required this.title,
});