75.13 Initializing the RecyclerView
Add the final setup method to initialize and configure the RecyclerView and adapter as follows:
private fun recyclerSetup() {
adapter = ProductListAdapter(R.layout.product_list_item)
binding.productRecycler.layoutManager = LinearLayoutManager(context)
binding.productRecycler.adapter = adapter
}