fun getProductById()

in app/src/main/java/co/elastic/apm/opbeans/app/data/repository/ProductRepository.kt [41:43]


    fun getProductById(id: Int, callback: (Result<ProductDetail>) -> Unit) {
        return remoteProductSource.getProductById(id, callback)
    }