In this task, you will work with a class StoreService that manages a store's inventory.
The store has three types of products: shoes, shirts, and jackets. Your task is to implement a function to update the stock for each product type,
using Kotlin's with construct to simplify code readability.
- Implement the method
updateStoreStock()in theStoreServiceclass. - This method should take a
Storeobject and additional quantities of shoes, shirts, and jackets to be added to the store's stock. - Use the
withfunction to access the store's properties and update the stock for shoes, shirts, and jackets.