abstract fun onDragReleased(model: T, itemView: View!): Unit
Called after #onDragStarted(EpoxyModel, View, int) when the view being dragged is released. If the view was dragged to a new, valid location then #onModelMoved(int, int, * EpoxyModel, View) will be called before this and the view will settle to the new location. Otherwise the view will animate back to its original position.
You can use this callback to modify the view as it animates back into position.
BaseEpoxyTouchCallback#clearView(EpoxyModel, View) will be called after this, when the view has finished animating. Final cleanup of the view should be done there.
model - T: The model representing the view that is being released