copyWith method

WebApiModulesHomeControlsOrderNoteOrderNote copyWith({
  1. String? orderNoteId,
  2. String? orderId,
  3. String? noteDate,
  4. String? userId,
  5. String? notesDescription,
  6. bool? billing,
  7. bool? printOnOrder,
  8. bool? copyToInvoice,
  9. bool? scheduleNote,
  10. String? scheduleNoteDate,
  11. bool? pickList,
  12. String? userName,
  13. String? notes,
  14. String? dateStamp,
  15. String? auditNote,
  16. String? recordTitle,
  17. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  18. List<FwStandardDataFwCustomValue>? custom,
  19. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  20. List<FwStandardDataFwTranslatedValue>? translation,
})

Implementation

WebApiModulesHomeControlsOrderNoteOrderNote copyWith(
    {String? orderNoteId,
    String? orderId,
    String? noteDate,
    String? userId,
    String? notesDescription,
    bool? billing,
    bool? printOnOrder,
    bool? copyToInvoice,
    bool? scheduleNote,
    String? scheduleNoteDate,
    bool? pickList,
    String? userName,
    String? notes,
    String? dateStamp,
    String? auditNote,
    String? recordTitle,
    List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
    List<FwStandardDataFwCustomValue>? custom,
    List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
    List<FwStandardDataFwTranslatedValue>? translation}) {
  return WebApiModulesHomeControlsOrderNoteOrderNote(
      orderNoteId: orderNoteId ?? this.orderNoteId,
      orderId: orderId ?? this.orderId,
      noteDate: noteDate ?? this.noteDate,
      userId: userId ?? this.userId,
      notesDescription: notesDescription ?? this.notesDescription,
      billing: billing ?? this.billing,
      printOnOrder: printOnOrder ?? this.printOnOrder,
      copyToInvoice: copyToInvoice ?? this.copyToInvoice,
      scheduleNote: scheduleNote ?? this.scheduleNote,
      scheduleNoteDate: scheduleNoteDate ?? this.scheduleNoteDate,
      pickList: pickList ?? this.pickList,
      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);
}