override fun hashCode()

in app/src/main/java/com/amazonaws/ivs/player/ecommerce/models/ProductModel.kt [37:46]


    override fun hashCode(): Int {
        var result = id.hashCode()
        result = 31 * result + name.hashCode()
        result = 31 * result + imageUrl.hashCode()
        result = 31 * result + imageLargeUrl.hashCode()
        result = 31 * result + price
        result = 31 * result + discountedPrice
        result = 31 * result + longDescription.hashCode()
        return result
    }