copyWith method

WebApiModulesInventoryStorageContainerStorageContainerItem copyWith({
  1. int? storageContainerItemId,
  2. int? storageContainerId,
  3. String? storageContainerBarcode,
  4. String? aisleShelf,
  5. String? orderNumber,
  6. String? orderDescription,
  7. String? deal,
  8. String? pickupLocation,
  9. String? auditNote,
  10. String? recordTitle,
  11. dynamic urlIdentifier,
  12. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  13. List<FwStandardDataFwCustomValue>? custom,
  14. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  15. FwStandardBusinessLogicFwBusinessLogic? original,
  16. List<FwStandardDataFwTranslatedValue>? translation,
  17. bool? hasImport,
  18. String? createdByUserId,
  19. String? createdByUserName,
  20. String? createdDateTime,
  21. String? modifiedByUserId,
  22. String? modifiedByUserName,
  23. String? modifiedDateTime,
})

Implementation

WebApiModulesInventoryStorageContainerStorageContainerItem copyWith({
  int? storageContainerItemId,
  int? storageContainerId,
  String? storageContainerBarcode,
  String? aisleShelf,
  String? orderNumber,
  String? orderDescription,
  String? deal,
  String? pickupLocation,
  String? auditNote,
  String? recordTitle,
  dynamic urlIdentifier,
  List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  List<FwStandardDataFwCustomValue>? custom,
  List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  FwStandardBusinessLogicFwBusinessLogic? original,
  List<FwStandardDataFwTranslatedValue>? translation,
  bool? hasImport,
  String? createdByUserId,
  String? createdByUserName,
  String? createdDateTime,
  String? modifiedByUserId,
  String? modifiedByUserName,
  String? modifiedDateTime,
}) {
  return WebApiModulesInventoryStorageContainerStorageContainerItem(
    storageContainerItemId:
        storageContainerItemId ?? this.storageContainerItemId,
    storageContainerId: storageContainerId ?? this.storageContainerId,
    storageContainerBarcode:
        storageContainerBarcode ?? this.storageContainerBarcode,
    aisleShelf: aisleShelf ?? this.aisleShelf,
    orderNumber: orderNumber ?? this.orderNumber,
    orderDescription: orderDescription ?? this.orderDescription,
    deal: deal ?? this.deal,
    pickupLocation: pickupLocation ?? this.pickupLocation,
    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,
    createdByUserId: createdByUserId ?? this.createdByUserId,
    createdByUserName: createdByUserName ?? this.createdByUserName,
    createdDateTime: createdDateTime ?? this.createdDateTime,
    modifiedByUserId: modifiedByUserId ?? this.modifiedByUserId,
    modifiedByUserName: modifiedByUserName ?? this.modifiedByUserName,
    modifiedDateTime: modifiedDateTime ?? this.modifiedDateTime,
  );
}