TapEffect constructor
const
TapEffect({
- Key? key,
- bool isClickable = true,
- required VoidCallback onClick,
- required Widget child,
Implementation
const TapEffect(
{Key? key,
this.isClickable = true,
required this.onClick,
required this.child})
: super(key: key);