copyWith method

WebApiModulesHomeControlsInventoryContainerItemInventoryContainerItem copyWith({
  1. String? containerItemId,
  2. String? packageId,
  3. String? containerId,
  4. int? rowNumber,
  5. String? iCode,
  6. String? description,
  7. String? trackedBy,
  8. double? quantityOrdered,
  9. double? price,
  10. String? notes,
  11. String? inventoryId,
  12. String? recType,
  13. int? ident,
  14. String? dateStamp,
  15. String? auditNote,
  16. String? recordTitle,
  17. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  18. List<FwStandardDataFwCustomValue>? custom,
  19. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  20. List<FwStandardDataFwTranslatedValue>? translation,
})

Implementation

WebApiModulesHomeControlsInventoryContainerItemInventoryContainerItem
    copyWith(
        {String? containerItemId,
        String? packageId,
        String? containerId,
        int? rowNumber,
        String? iCode,
        String? description,
        String? trackedBy,
        double? quantityOrdered,
        double? price,
        String? notes,
        String? inventoryId,
        String? recType,
        int? ident,
        String? dateStamp,
        String? auditNote,
        String? recordTitle,
        List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
        List<FwStandardDataFwCustomValue>? custom,
        List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
        List<FwStandardDataFwTranslatedValue>? translation}) {
  return WebApiModulesHomeControlsInventoryContainerItemInventoryContainerItem(
      containerItemId: containerItemId ?? this.containerItemId,
      packageId: packageId ?? this.packageId,
      containerId: containerId ?? this.containerId,
      rowNumber: rowNumber ?? this.rowNumber,
      iCode: iCode ?? this.iCode,
      description: description ?? this.description,
      trackedBy: trackedBy ?? this.trackedBy,
      quantityOrdered: quantityOrdered ?? this.quantityOrdered,
      price: price ?? this.price,
      notes: notes ?? this.notes,
      inventoryId: inventoryId ?? this.inventoryId,
      recType: recType ?? this.recType,
      ident: ident ?? this.ident,
      dateStamp: dateStamp ?? this.dateStamp,
      auditNote: auditNote ?? this.auditNote,
      recordTitle: recordTitle ?? this.recordTitle,
      fields: fields ?? this.fields,
      custom: custom ?? this.custom,
      defaultFieldAttributes:
          defaultFieldAttributes ?? this.defaultFieldAttributes,
      translation: translation ?? this.translation);
}