copyWithWrapped method

WebApiModulesHomeControlsProjectNoteProjectNote copyWithWrapped({
  1. Wrapped<String?>? projectNoteId,
  2. Wrapped<String?>? projectId,
  3. Wrapped<String?>? noteDate,
  4. Wrapped<String?>? userId,
  5. Wrapped<String?>? notesDescription,
  6. Wrapped<bool?>? printOnProject,
  7. Wrapped<String?>? userName,
  8. Wrapped<String?>? notes,
  9. Wrapped<String?>? dateStamp,
  10. Wrapped<String?>? auditNote,
  11. Wrapped<String?>? recordTitle,
  12. Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>? fields,
  13. Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  14. Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  15. Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
})

Implementation

WebApiModulesHomeControlsProjectNoteProjectNote copyWithWrapped(
    {Wrapped<String?>? projectNoteId,
    Wrapped<String?>? projectId,
    Wrapped<String?>? noteDate,
    Wrapped<String?>? userId,
    Wrapped<String?>? notesDescription,
    Wrapped<bool?>? printOnProject,
    Wrapped<String?>? userName,
    Wrapped<String?>? notes,
    Wrapped<String?>? dateStamp,
    Wrapped<String?>? auditNote,
    Wrapped<String?>? recordTitle,
    Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
        fields,
    Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
    Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
    Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
  return WebApiModulesHomeControlsProjectNoteProjectNote(
      projectNoteId:
          (projectNoteId != null ? projectNoteId.value : this.projectNoteId),
      projectId: (projectId != null ? projectId.value : this.projectId),
      noteDate: (noteDate != null ? noteDate.value : this.noteDate),
      userId: (userId != null ? userId.value : this.userId),
      notesDescription: (notesDescription != null
          ? notesDescription.value
          : this.notesDescription),
      printOnProject: (printOnProject != null
          ? printOnProject.value
          : this.printOnProject),
      userName: (userName != null ? userName.value : this.userName),
      notes: (notes != null ? notes.value : this.notes),
      dateStamp: (dateStamp != null ? dateStamp.value : this.dateStamp),
      auditNote: (auditNote != null ? auditNote.value : this.auditNote),
      recordTitle:
          (recordTitle != null ? recordTitle.value : this.recordTitle),
      fields: (fields != null ? fields.value : this.fields),
      custom: (custom != null ? custom.value : this.custom),
      defaultFieldAttributes: (defaultFieldAttributes != null
          ? defaultFieldAttributes.value
          : this.defaultFieldAttributes),
      translation:
          (translation != null ? translation.value : this.translation));
}