copyWith method
WebApiModulesHomeControlsVendorInvoiceNoteVendorInvoiceNote
copyWith({
- String? vendorInvoiceNoteId,
- String? uniqueId1,
- String? uniqueId2,
- String? notes,
- String? noteDate,
- String? usersId,
- String? name,
- String? noteDescription,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesHomeControlsVendorInvoiceNoteVendorInvoiceNote copyWith(
{String? vendorInvoiceNoteId,
String? uniqueId1,
String? uniqueId2,
String? notes,
String? noteDate,
String? usersId,
String? name,
String? noteDescription,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesHomeControlsVendorInvoiceNoteVendorInvoiceNote(
vendorInvoiceNoteId: vendorInvoiceNoteId ?? this.vendorInvoiceNoteId,
uniqueId1: uniqueId1 ?? this.uniqueId1,
uniqueId2: uniqueId2 ?? this.uniqueId2,
notes: notes ?? this.notes,
noteDate: noteDate ?? this.noteDate,
usersId: usersId ?? this.usersId,
name: name ?? this.name,
noteDescription: noteDescription ?? this.noteDescription,
auditNote: auditNote ?? this.auditNote,
recordTitle: recordTitle ?? this.recordTitle,
fields: fields ?? this.fields,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes,
translation: translation ?? this.translation);
}