copyWith method
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,
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);
}