ItineraryCard constructor
- Key? key,
- required List<
Marker> markers, - required VoidCallback onTap,
- 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,
});