DragDownDetails constructor

DragDownDetails({Offset globalPosition: Offset.zero })

Creates details for a GestureDragDownCallback.

The globalPosition argument must not be null.

Implementation

DragDownDetails({ this.globalPosition = Offset.zero })
  : assert(globalPosition != null);