TapDownDetails constructor

TapDownDetails({Offset globalPosition: Offset.zero })

Creates details for a GestureTapDownCallback.

The globalPosition argument must not be null.

Implementation

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