TapDragDownDetails constructor

TapDragDownDetails(
  1. {required Offset globalPosition,
  2. required Offset localPosition,
  3. PointerDeviceKind? kind,
  4. required int consecutiveTapCount,
  5. required Set<LogicalKeyboardKey> keysPressedOnDown}
)

Creates details for a GestureTapDragDownCallback.

The globalPosition, localPosition, consecutiveTapCount, and keysPressedOnDown arguments must be provided and must not be null.

Implementation

TapDragDownDetails({
  required this.globalPosition,
  required this.localPosition,
  this.kind,
  required this.consecutiveTapCount,
  required this.keysPressedOnDown,
});