bindData

abstract fun bindData(appData: AppInfoData)(source)

Binds the application data to the ViewHolder.

This method is called to populate the views within the ViewHolder with the data from the provided AppInfoData object.

Parameters

appData

The application data to bind.


open override fun bindData(viewData: ViewData)(source)

Binds the given ViewData to this ViewHolder.

If the ViewData is an instance of AppInfoViewData, it extracts the AppInfoData and calls the abstract bindData method with it.

Parameters

viewData

The ViewData to bind.