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. dynamic urlIdentifier,
  21. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  22. List<FwStandardDataFwCustomValue>? custom,
  23. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  24. FwStandardBusinessLogicFwBusinessLogic? original,
  25. List<FwStandardDataFwTranslatedValue>? translation,
  26. bool? hasImport,
  27. bool? hasDocuments,
  28. String? createdByUserId,
  29. String? createdByUserName,
  30. String? createdDateTime,
  31. String? modifiedByUserId,
  32. String? modifiedByUserName,
  33. String? modifiedDateTime,
})

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