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