copyWithWrapped method

WebApiModulesHomeControlsVendorNoteVendorNote copyWithWrapped({
  1. Wrapped<String?>? vendorNoteId,
  2. Wrapped<String?>? vendorId,
  3. Wrapped<String?>? noteDate,
  4. Wrapped<String?>? description,
  5. Wrapped<String?>? notes,
  6. Wrapped<bool?>? notify,
  7. Wrapped<String?>? notesById,
  8. Wrapped<String?>? notesBy,
  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

WebApiModulesHomeControlsVendorNoteVendorNote copyWithWrapped(
    {Wrapped<String?>? vendorNoteId,
    Wrapped<String?>? vendorId,
    Wrapped<String?>? noteDate,
    Wrapped<String?>? description,
    Wrapped<String?>? notes,
    Wrapped<bool?>? notify,
    Wrapped<String?>? notesById,
    Wrapped<String?>? notesBy,
    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 WebApiModulesHomeControlsVendorNoteVendorNote(
      vendorNoteId:
          (vendorNoteId != null ? vendorNoteId.value : this.vendorNoteId),
      vendorId: (vendorId != null ? vendorId.value : this.vendorId),
      noteDate: (noteDate != null ? noteDate.value : this.noteDate),
      description:
          (description != null ? description.value : this.description),
      notes: (notes != null ? notes.value : this.notes),
      notify: (notify != null ? notify.value : this.notify),
      notesById: (notesById != null ? notesById.value : this.notesById),
      notesBy: (notesBy != null ? notesBy.value : this.notesBy),
      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));
}