DoubleTapGestureRecognizer constructor Null safety
- {Object? debugOwner,
- @Deprecated('Migrate to supportedDevices. ' 'This feature was deprecated after v2.3.0-1.0.pre.') PointerDeviceKind? kind,
- Set<
PointerDeviceKind> ? supportedDevices}
Create a gesture recognizer for double taps.
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
DoubleTapGestureRecognizer({
Object? debugOwner,
@Deprecated(
'Migrate to supportedDevices. '
'This feature was deprecated after v2.3.0-1.0.pre.',
)
PointerDeviceKind? kind,
Set<PointerDeviceKind>? supportedDevices,
}) : super(
debugOwner: debugOwner,
kind: kind,
supportedDevices: supportedDevices,
);