copyWith method

WebApiModulesHomeControlsVendorInvoiceNoteVendorInvoiceNote copyWith({
  1. String? vendorInvoiceNoteId,
  2. String? uniqueId1,
  3. String? uniqueId2,
  4. String? notes,
  5. String? noteDate,
  6. String? usersId,
  7. String? name,
  8. String? noteDescription,
  9. String? auditNote,
  10. String? recordTitle,
  11. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  12. List<FwStandardDataFwCustomValue>? custom,
  13. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  14. 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);
}