@itnoles I think what they mean by that is if you have MyViewBinding you can either do MyViewBinding.inflate or you can do ViewBinding<MyViewBinding>.inflate where the former only has three params, but the latter has four, and the extra param is the resource file for the layout corresponding to MyViewBinding (which should be
R.layout.my_view
I think)