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