copyWith method

ObstacleInfoRouteEntry copyWith({
  1. RoutePoint? point,
  2. ObstacleInfo? value,
})

Implementation

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