TouchWidget constructor
const
TouchWidget({})
Implementation
const TouchWidget({
Key? key,
required this.child,
this.onTap,
this.pressedOpacity,
this.padding,
int? touchSpaced,
}) : this.onDoubleTap = null,
this.onLongPressUp = null,
this.touchSpaced = touchSpaced == null ? 1 : touchSpaced,
super(key: key);