copyWith method

WebApiModulesHomeOrderConfirmationOrderConfirmation copyWith({
  1. String? orderConfirmationId,
  2. String? orderId,
  3. String? webUsersId,
  4. String? date,
  5. String? time,
  6. String? activityType,
  7. String? note,
  8. String? person,
  9. String? payType,
  10. String? paymentTerms,
  11. String? purchaseOrderNumber,
  12. double? amount,
  13. String? auditNote,
  14. String? recordTitle,
  15. dynamic urlIdentifier,
  16. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  17. List<FwStandardDataFwCustomValue>? custom,
  18. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  19. FwStandardBusinessLogicFwBusinessLogic? original,
  20. List<FwStandardDataFwTranslatedValue>? translation,
  21. bool? hasImport,
  22. bool? hasDocuments,
  23. String? createdByUserId,
  24. String? createdByUserName,
  25. String? createdDateTime,
  26. String? modifiedByUserId,
  27. String? modifiedByUserName,
  28. String? modifiedDateTime,
})

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,
  dynamic urlIdentifier,
  List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  List<FwStandardDataFwCustomValue>? custom,
  List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  FwStandardBusinessLogicFwBusinessLogic? original,
  List<FwStandardDataFwTranslatedValue>? translation,
  bool? hasImport,
  bool? hasDocuments,
  String? createdByUserId,
  String? createdByUserName,
  String? createdDateTime,
  String? modifiedByUserId,
  String? modifiedByUserName,
  String? modifiedDateTime,
}) {
  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,
    urlIdentifier: urlIdentifier ?? this.urlIdentifier,
    fields: fields ?? this.fields,
    custom: custom ?? this.custom,
    defaultFieldAttributes:
        defaultFieldAttributes ?? this.defaultFieldAttributes,
    original: original ?? this.original,
    translation: translation ?? this.translation,
    hasImport: hasImport ?? this.hasImport,
    hasDocuments: hasDocuments ?? this.hasDocuments,
    createdByUserId: createdByUserId ?? this.createdByUserId,
    createdByUserName: createdByUserName ?? this.createdByUserName,
    createdDateTime: createdDateTime ?? this.createdDateTime,
    modifiedByUserId: modifiedByUserId ?? this.modifiedByUserId,
    modifiedByUserName: modifiedByUserName ?? this.modifiedByUserName,
    modifiedDateTime: modifiedDateTime ?? this.modifiedDateTime,
  );
}