ClickableScaleWrapper constructor

const ClickableScaleWrapper({
  1. Key? key,
  2. required Widget child,
  3. required VoidCallback onTap,
  4. bool isTapScale = true,
  5. BoxDecoration? decoration,
  6. double tapDecorationScale = 0.5,
})

Implementation

const ClickableScaleWrapper(
    {Key? key, required this.child, required this.onTap, this.isTapScale = true,this.decoration,this.tapDecorationScale=0.5})
    : super(key: key);