copyWith method

Implementation

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