copyWith method

WebApiModulesInventoryContainerItemEmptyContainerRequest copyWith({
  1. String? itemId,
  2. String? warehouseId,
  3. bool? deleteAll,
  4. bool? voidTheFill,
})

Implementation

WebApiModulesInventoryContainerItemEmptyContainerRequest copyWith({
  String? itemId,
  String? warehouseId,
  bool? deleteAll,
  bool? voidTheFill,
}) {
  return WebApiModulesInventoryContainerItemEmptyContainerRequest(
    itemId: itemId ?? this.itemId,
    warehouseId: warehouseId ?? this.warehouseId,
    deleteAll: deleteAll ?? this.deleteAll,
    voidTheFill: voidTheFill ?? this.voidTheFill,
  );
}