protected open fun notifyModelsChanged(): Unit
Intelligently notify item changes by comparing the current #models list against the previous so you don't have to micromanage notification calls yourself. This may be prohibitively slow for large model lists (in the hundreds), in which case consider doing notification calls yourself. If you use this, all your view models must implement and EpoxyModel#equals(Object) to completely identify their state, so that changes to a model's content can be detected. Before using this you must enable it with #enableDiffing(), since keeping track of the model state adds extra computation time to all other data change notifications.
See Also
#enableDiffing()