copyWith method
WebApiModulesHomeOrderConfirmationOrderConfirmation
copyWith({
- String? orderConfirmationId,
- String? orderId,
- String? webUsersId,
- String? date,
- String? time,
- String? activityType,
- String? note,
- String? person,
- String? payType,
- String? paymentTerms,
- String? purchaseOrderNumber,
- double? amount,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesHomeOrderConfirmationOrderConfirmation copyWith(
{String? orderConfirmationId,
String? orderId,
String? webUsersId,
String? date,
String? time,
String? activityType,
String? note,
String? person,
String? payType,
String? paymentTerms,
String? purchaseOrderNumber,
double? amount,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesHomeOrderConfirmationOrderConfirmation(
orderConfirmationId: orderConfirmationId ?? this.orderConfirmationId,
orderId: orderId ?? this.orderId,
webUsersId: webUsersId ?? this.webUsersId,
date: date ?? this.date,
time: time ?? this.time,
activityType: activityType ?? this.activityType,
note: note ?? this.note,
person: person ?? this.person,
payType: payType ?? this.payType,
paymentTerms: paymentTerms ?? this.paymentTerms,
purchaseOrderNumber: purchaseOrderNumber ?? this.purchaseOrderNumber,
amount: amount ?? this.amount,
auditNote: auditNote ?? this.auditNote,
recordTitle: recordTitle ?? this.recordTitle,
fields: fields ?? this.fields,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes,
translation: translation ?? this.translation);
}