copyWith method

ObstacleInfoRouteLongEntry copyWith({
  1. RoutePoint? point,
  2. RouteDistance? length,
  3. ObstacleInfo? value,
})

Implementation

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