Quick actions

cmd+k|ctrl+k

Navigation

Languages

LSP Implementation

Snippet info

Language

Swift

Visibility

public

Author

alfian

Created

2020-06-03T07:05:37Z

Updated

2020-06-03T07:05:37Z

protocol Product {
    var name: String { get }
    
    /**
     * Function to get all of information about product
     */
    func getProductInfo()
}
INFO