TapDragDownDetails constructor
- {required Offset globalPosition,
- required Offset localPosition,
- PointerDeviceKind? kind,
- required int consecutiveTapCount,
- 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,
});