copyWithWrapped method

WebApiModulesInventoryRepairVoidRepairRequest copyWithWrapped({
  1. Wrapped<String?>? repairId,
  2. Wrapped<String?>? voidNotes,
})

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),
  );
}