RippleAnimation constructor

const RippleAnimation({
  1. Key? key,
  2. bool isAnimating = true,
  3. Color color = Colors.blue,
  4. double size = 120,
  5. int ringCount = 3,
})

Implementation

const RippleAnimation({
  super.key,
  this.isAnimating = true,
  this.color = Colors.blue,
  this.size = 120,
  this.ringCount = 3,
});