copyWith method

WebApiModulesHomeControlsDealNoteDealNote copyWith({
  1. String? dealNoteId,
  2. String? dealId,
  3. String? noteDate,
  4. String? notesById,
  5. String? notesBy,
  6. String? description,
  7. String? notes,
  8. bool? notify,
  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

WebApiModulesHomeControlsDealNoteDealNote copyWith(
    {String? dealNoteId,
    String? dealId,
    String? noteDate,
    String? notesById,
    String? notesBy,
    String? description,
    String? notes,
    bool? notify,
    String? dateStamp,
    String? auditNote,
    String? recordTitle,
    List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
    List<FwStandardDataFwCustomValue>? custom,
    List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
    List<FwStandardDataFwTranslatedValue>? translation}) {
  return WebApiModulesHomeControlsDealNoteDealNote(
      dealNoteId: dealNoteId ?? this.dealNoteId,
      dealId: dealId ?? this.dealId,
      noteDate: noteDate ?? this.noteDate,
      notesById: notesById ?? this.notesById,
      notesBy: notesBy ?? this.notesBy,
      description: description ?? this.description,
      notes: notes ?? this.notes,
      notify: notify ?? this.notify,
      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);
}