Maneuver constructor

Maneuver({
  1. List<num>? location,
  2. num? bearingBefore,
  3. num? bearingAfter,
  4. String? instruction,
  5. String? type,
  6. String? modifier,
  7. num? exit,
})

Implementation

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