copyWith method

WebApiModulesWarehouseCheckInReconcileCheckInReconcile copyWith({
  1. String? contractId,
  2. String? contractDate,
  3. String? contractNumber,
  4. String? contractType,
  5. String? contractTime,
  6. String? locationId,
  7. String? locationCode,
  8. String? location,
  9. String? warehouseId,
  10. String? warehouseCode,
  11. String? warehouse,
  12. String? dealId,
  13. String? deal,
  14. String? departmentId,
  15. String? department,
  16. String? quikInOneOrderPerContract,
  17. bool? hasAssigned,
  18. String? auditNote,
  19. String? recordTitle,
  20. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  21. List<FwStandardDataFwCustomValue>? custom,
  22. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  23. List<FwStandardDataFwTranslatedValue>? translation,
})

Implementation

WebApiModulesWarehouseCheckInReconcileCheckInReconcile copyWith(
    {String? contractId,
    String? contractDate,
    String? contractNumber,
    String? contractType,
    String? contractTime,
    String? locationId,
    String? locationCode,
    String? location,
    String? warehouseId,
    String? warehouseCode,
    String? warehouse,
    String? dealId,
    String? deal,
    String? departmentId,
    String? department,
    String? quikInOneOrderPerContract,
    bool? hasAssigned,
    String? auditNote,
    String? recordTitle,
    List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
    List<FwStandardDataFwCustomValue>? custom,
    List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
    List<FwStandardDataFwTranslatedValue>? translation}) {
  return WebApiModulesWarehouseCheckInReconcileCheckInReconcile(
      contractId: contractId ?? this.contractId,
      contractDate: contractDate ?? this.contractDate,
      contractNumber: contractNumber ?? this.contractNumber,
      contractType: contractType ?? this.contractType,
      contractTime: contractTime ?? this.contractTime,
      locationId: locationId ?? this.locationId,
      locationCode: locationCode ?? this.locationCode,
      location: location ?? this.location,
      warehouseId: warehouseId ?? this.warehouseId,
      warehouseCode: warehouseCode ?? this.warehouseCode,
      warehouse: warehouse ?? this.warehouse,
      dealId: dealId ?? this.dealId,
      deal: deal ?? this.deal,
      departmentId: departmentId ?? this.departmentId,
      department: department ?? this.department,
      quikInOneOrderPerContract:
          quikInOneOrderPerContract ?? this.quikInOneOrderPerContract,
      hasAssigned: hasAssigned ?? this.hasAssigned,
      auditNote: auditNote ?? this.auditNote,
      recordTitle: recordTitle ?? this.recordTitle,
      fields: fields ?? this.fields,
      custom: custom ?? this.custom,
      defaultFieldAttributes:
          defaultFieldAttributes ?? this.defaultFieldAttributes,
      translation: translation ?? this.translation);
}