NavigationManeuver constructor

NavigationManeuver({
  1. int? bearingBefore,
  2. int? bearingAfter,
  3. String? instruction,
  4. List<double>? location,
  5. NavigationManeuverModifier? modifier,
  6. NavigationManeuverType? type,
})

Implementation

NavigationManeuver({
  this.bearingBefore,
  this.bearingAfter,
  this.instruction,
  this.location,
  this.modifier,
  this.type,
});