NavigationWaypoint constructor

NavigationWaypoint({
  1. String? name,
  2. List<double>? location = const <double>[],
  3. double? distance,
})

Implementation

NavigationWaypoint({
  this.name,
  this.location = const <double>[],
  this.distance,
});