NavigationTracepoint constructor

NavigationTracepoint({
  1. int? matchingsIndex,
  2. int? waypointIndex,
  3. int? alternativesCount,
  4. String? name,
  5. List<double>? location,
  6. double? distance,
})

Implementation

NavigationTracepoint({
  this.matchingsIndex,
  this.waypointIndex,
  this.alternativesCount,
  String? name,
  List<double>? location,
  double? distance,
}) : super(
        name: name,
        location: location,
        distance: distance,
      );