Route constructor

Route({
  1. String? summary,
  2. List<Leg>? legs,
  3. String? copyrights,
  4. Polyline? overviewPolyline,
  5. List? warnings,
  6. List<num>? waypointOrder,
  7. Bounds? bounds,
  8. Fare? fare,
})

Implementation

Route({
  this.summary,
  this.legs,
  this.copyrights,
  this.overviewPolyline,
  this.warnings,
  this.waypointOrder,
  this.bounds,
  this.fare,
});