NavigationRoute constructor

NavigationRoute({
  1. double? duration,
  2. double? distance,
  3. String? weightName,
  4. double? weight,
  5. dynamic geometry,
  6. List<NavigationLeg>? legs = const <NavigationLeg>[],
  7. String? voiceLocale,
})

Implementation

NavigationRoute({
  this.duration,
  this.distance,
  this.weightName,
  this.weight,
  this.geometry,
  this.legs = const <NavigationLeg>[],
  this.voiceLocale,
});