Tappable constructor
- {Key key,
- Widget child,
- GestureTapCallback onTap,
- GestureTapCallback onDoubleTap,
- GestureLongPressCallback onLongPress,
- GestureTapDownCallback onTapDown,
- GestureTapCancelCallback onTapCancel}
Implementation
const Tappable({
Key key,
this.child,
this.onTap,
this.onDoubleTap,
this.onLongPress,
this.onTapDown,
this.onTapCancel,
}) : super(key: key);