copyWith method

TruckPassZonePassId copyWith({
  1. int? value,
})

Implementation

TruckPassZonePassId copyWith({
  int? value
}) {
  return TruckPassZonePassId(
    value ?? this.value
  );
}