What is Kotlin Reified Type Parameter?
One of the most common uses of this reified type parameter is view model creation. For example, the following code is the viewModels() composable helper function to create the view model.
@Composable
public inline fun <reified VM : ViewModel> viewMod...
vtsen.hashnode.dev2 min read