Route constructor

Route({
  1. double? weightTypical,
  2. double? durationTypical,
  3. String? weightName,
  4. double? weight,
  5. double? duration,
  6. double? distance,
  7. List<Leg>? legs,
  8. Geometry? geometry,
})

Implementation

Route({
  this.weightTypical,
  this.durationTypical,
  this.weightName,
  this.weight,
  this.duration,
  this.distance,
  this.legs,
  this.geometry,
});