copyWith method

WebApiModulesHomeControlsProjectNoteProjectNote copyWith({
  1. String? projectNoteId,
  2. String? projectId,
  3. String? noteDate,
  4. String? userId,
  5. String? notesDescription,
  6. bool? printOnProject,
  7. String? userName,
  8. String? notes,
  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

WebApiModulesHomeControlsProjectNoteProjectNote copyWith(
    {String? projectNoteId,
    String? projectId,
    String? noteDate,
    String? userId,
    String? notesDescription,
    bool? printOnProject,
    String? userName,
    String? notes,
    String? dateStamp,
    String? auditNote,
    String? recordTitle,
    List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
    List<FwStandardDataFwCustomValue>? custom,
    List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
    List<FwStandardDataFwTranslatedValue>? translation}) {
  return WebApiModulesHomeControlsProjectNoteProjectNote(
      projectNoteId: projectNoteId ?? this.projectNoteId,
      projectId: projectId ?? this.projectId,
      noteDate: noteDate ?? this.noteDate,
      userId: userId ?? this.userId,
      notesDescription: notesDescription ?? this.notesDescription,
      printOnProject: printOnProject ?? this.printOnProject,
      userName: userName ?? this.userName,
      notes: notes ?? this.notes,
      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);
}