copyWith method

WebApiModulesHomeControlsVendorNoteVendorNote copyWith({
  1. String? vendorNoteId,
  2. String? vendorId,
  3. String? noteDate,
  4. String? description,
  5. String? notes,
  6. bool? notify,
  7. String? notesById,
  8. String? notesBy,
  9. String? dateStamp,
  10. String? auditNote,
  11. String? recordTitle,
  12. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  13. List<FwStandardDataFwCustomValue>? custom,
  14. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  15. List<FwStandardDataFwTranslatedValue>? translation,
})

Implementation

WebApiModulesHomeControlsVendorNoteVendorNote copyWith(
    {String? vendorNoteId,
    String? vendorId,
    String? noteDate,
    String? description,
    String? notes,
    bool? notify,
    String? notesById,
    String? notesBy,
    String? dateStamp,
    String? auditNote,
    String? recordTitle,
    List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
    List<FwStandardDataFwCustomValue>? custom,
    List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
    List<FwStandardDataFwTranslatedValue>? translation}) {
  return WebApiModulesHomeControlsVendorNoteVendorNote(
      vendorNoteId: vendorNoteId ?? this.vendorNoteId,
      vendorId: vendorId ?? this.vendorId,
      noteDate: noteDate ?? this.noteDate,
      description: description ?? this.description,
      notes: notes ?? this.notes,
      notify: notify ?? this.notify,
      notesById: notesById ?? this.notesById,
      notesBy: notesBy ?? this.notesBy,
      dateStamp: dateStamp ?? this.dateStamp,
      auditNote: auditNote ?? this.auditNote,
      recordTitle: recordTitle ?? this.recordTitle,
      fields: fields ?? this.fields,
      custom: custom ?? this.custom,
      defaultFieldAttributes:
          defaultFieldAttributes ?? this.defaultFieldAttributes,
      translation: translation ?? this.translation);
}