copyWith method
RoadSurfaceRouteLongEntry
copyWith({
- RoutePoint? point,
- RouteDistance? length,
- RoadSurface? value,
Implementation
RoadSurfaceRouteLongEntry copyWith({
RoutePoint? point,
RouteDistance? length,
RoadSurface? value
}) {
return RoadSurfaceRouteLongEntry(
point: point ?? this.point,
length: length ?? this.length,
value: value ?? this.value
);
}