OsrmRouteLeg constructor

OsrmRouteLeg({
  1. num? distance,
  2. num? duration,
  3. num? weight,
  4. String? summary,
  5. List<OsrmRouteStep>? steps,
})

Implementation

OsrmRouteLeg({
  this.distance,
  this.duration,
  this.weight,
  this.summary,
  this.steps,
});