Event emitted when the user stops dragging a draggable.
interface CdkDragEnd<T = any> { source: CdkDrag<T>; distance: { x: number; y: number; }; dropPoint: { x: number; y: number; }; event: MouseEvent | TouchEvent;}
CdkDrag<T>
Draggable that emitted the event.
{ x: number; y: number; }
Distance in pixels that the user has dragged since the drag sequence started.
Position where the pointer was when the item was dropped
MouseEvent | TouchEvent
Native event that caused the dragging to stop.