76.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)
val recyclerView: RecyclerView? = view?.findViewById(R.id.product_recycler)
recyclerView?.layoutManager = LinearLayoutManager(context)
recyclerView?.adapter = adapter
}