copyWithWrapped method
Implementation
WebApiModulesInventoryRepairCreateRepairResponse copyWithWrapped(
{Wrapped<String?>? repairId,
Wrapped<WebApiModulesInventoryRepairRepair?>? repair,
Wrapped<int?>? status,
Wrapped<bool?>? success,
Wrapped<String?>? msg}) {
return WebApiModulesInventoryRepairCreateRepairResponse(
repairId: (repairId != null ? repairId.value : this.repairId),
repair: (repair != null ? repair.value : this.repair),
status: (status != null ? status.value : this.status),
success: (success != null ? success.value : this.success),
msg: (msg != null ? msg.value : this.msg));
}