Kotlin "None of the following functions can be called with the arguments supplied" on Fragment
I'm trying to pass data from RecyclerView inside fragment to new activity, but "putExtra" displaying error like this :
None of the following functions can be called with the arguments
supplied
Fragment.kt
class NewsFragment : Fragment() {
private lateinit var adapter : NewsAdapter
private lateinit var recyclerView: RecyclerView
private lateinit var newsArrayList : ArrayList
lateinit var imageId : Array
lateinit var heading : Array
lateinit var news : Array...