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