WBouncingIcon constructor

const WBouncingIcon({
  1. Key? key,
  2. bool bounce = true,
  3. required Widget icon,
})

Implementation

const WBouncingIcon({
  super.key,
  this.bounce = true,
  required this.icon,
});