canHandleDropped method

bool canHandleDropped(
  1. Offset offset,
  2. dynamic data
)

details is either DragTargetDetails<dynamic> or a string that is the name of the widget dropped or if it was re-arranged then it is the widget itself that was dropped

Implementation

bool canHandleDropped(Offset offset, dynamic data) =>
    delegate.canHandleDropped(offset, data);