copyWith method

WebApiModulesHomeControlsContainerItemRemoveFromContainerRequest copyWith({
  1. String? containerItemId,
  2. String? itemId,
  3. String? inventoryId,
  4. String? warehouseId,
  5. String? consignorId,
  6. String? consignorAgreementId,
  7. double? quantity,
})

Implementation

WebApiModulesHomeControlsContainerItemRemoveFromContainerRequest copyWith(
    {String? containerItemId,
    String? itemId,
    String? inventoryId,
    String? warehouseId,
    String? consignorId,
    String? consignorAgreementId,
    double? quantity}) {
  return WebApiModulesHomeControlsContainerItemRemoveFromContainerRequest(
      containerItemId: containerItemId ?? this.containerItemId,
      itemId: itemId ?? this.itemId,
      inventoryId: inventoryId ?? this.inventoryId,
      warehouseId: warehouseId ?? this.warehouseId,
      consignorId: consignorId ?? this.consignorId,
      consignorAgreementId: consignorAgreementId ?? this.consignorAgreementId,
      quantity: quantity ?? this.quantity);
}