copyWithWrapped method
Implementation
WebApiModulesHomeControlsInventorySearchInventorySearchSaveNoteRequest
copyWithWrapped(
{Wrapped<String?>? sessionId,
Wrapped<int?>? quikSearchId,
Wrapped<String?>? note}) {
return WebApiModulesHomeControlsInventorySearchInventorySearchSaveNoteRequest(
sessionId: (sessionId != null ? sessionId.value : this.sessionId),
quikSearchId:
(quikSearchId != null ? quikSearchId.value : this.quikSearchId),
note: (note != null ? note.value : this.note));
}