RippleWave constructor

const RippleWave({
  1. Key? key,
  2. Color color = Colors.teal,
  3. Duration duration = const Duration(milliseconds: 1500),
  4. bool repeat = true,
  5. required Widget child,
  6. Tween<double>? childTween,
  7. AnimationController? animationController,
})

Implementation

const RippleWave({
    Key? key,
    this.color = Colors.teal,
    this.duration = const Duration(milliseconds: 1500),
    this.repeat = true,
    required this.child,
    this.childTween,
    this.animationController,
}) : super(key: key);