open fun unbind(@NonNull view: T): Unit
Called when the view bound to this model is recycled. Subclasses can override this if their view should release resources when it's recycled.
Note that #bind(Object) can be called multiple times without an unbind call in between if the view has remained on screen to be reused across item changes. This means that you should not rely on unbind to clear a view or model's state before bind is called again.