PrimaryPointerGestureRecognizer constructor

PrimaryPointerGestureRecognizer(
  1. {Duration? deadline,
  2. double? preAcceptSlopTolerance = kTouchSlop,
  3. double? postAcceptSlopTolerance = kTouchSlop,
  4. Object? debugOwner,
  5. Set<PointerDeviceKind>? supportedDevices,
  6. AllowedButtonsFilter? allowedButtonsFilter}
)

Initializes the deadline field during construction of subclasses.

It's possible to limit this recognizer to a specific set of PointerDeviceKinds by providing the optional supportedDevices argument. If supportedDevices is null, the recognizer will accept pointer events from all device kinds.

Implementation

PrimaryPointerGestureRecognizer({
  this.deadline,
  this.preAcceptSlopTolerance = kTouchSlop,
  this.postAcceptSlopTolerance = kTouchSlop,
  super.debugOwner,
  super.supportedDevices,
  super.allowedButtonsFilter,
}) : assert(
       preAcceptSlopTolerance == null || preAcceptSlopTolerance >= 0,
       'The preAcceptSlopTolerance must be positive or null',
     ),
     assert(
       postAcceptSlopTolerance == null || postAcceptSlopTolerance >= 0,
       'The postAcceptSlopTolerance must be positive or null',
     );