Quick actions

cmd+k|ctrl+k

Navigation

Languages

Dependency

Snippet info

Language

Swift

Visibility

public

Author

alfian

Created

2020-06-03T06:39:52Z

Updated

2020-06-03T06:39:52Z

class ShopService {

    func changeProductPrice(price: String, product: Product) {
        product.changePrice(price)
    }
}
INFO