copyWith method
Implementation
ObstacleInfoRouteEntry copyWith({
  RoutePoint? point,
  ObstacleInfo? value
}) {
  return ObstacleInfoRouteEntry(
    point: point ?? this.point,
    value: value ?? this.value
  );
}ObstacleInfoRouteEntry copyWith({
  RoutePoint? point,
  ObstacleInfo? value
}) {
  return ObstacleInfoRouteEntry(
    point: point ?? this.point,
    value: value ?? this.value
  );
}