copyWithWrapped method
Implementation
WebApiModulesWarehouseCheckInUpdateNotesRequest copyWithWrapped({
Wrapped<String?>? notes,
Wrapped<String?>? contractId,
}) {
return WebApiModulesWarehouseCheckInUpdateNotesRequest(
notes: (notes != null ? notes.value : this.notes),
contractId: (contractId != null ? contractId.value : this.contractId),
);
}