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