copyWithWrapped method
Implementation
WebApiModulesInventoryRepairVoidRepairRequest copyWithWrapped({
Wrapped<String?>? repairId,
Wrapped<String?>? voidNotes,
}) {
return WebApiModulesInventoryRepairVoidRepairRequest(
repairId: (repairId != null ? repairId.value : this.repairId),
voidNotes: (voidNotes != null ? voidNotes.value : this.voidNotes),
);
}