WaveAnimation constructor

const WaveAnimation({
  1. Key? key,
  2. required Animation<double> controller,
  3. WaveAnimationStyle style = const WaveAnimationStyle(),
})

Implementation

const WaveAnimation({
  Key? key,
  required this.controller,
  this.style = const WaveAnimationStyle(),
}) : super(key: key);