TapEffect constructor

const TapEffect({
  1. Key? key,
  2. bool isClickable = true,
  3. required VoidCallback onClick,
  4. required Widget child,
})

Implementation

const TapEffect(
    {Key? key,
    this.isClickable = true,
    required this.onClick,
    required this.child})
    : super(key: key);