Waypoint constructor

Waypoint({
  1. required double distance,
  2. required String name,
  3. required List<double> location,
})

Implementation

Waypoint({
  required this.distance,
  required this.name,
  required this.location,
});