JumpingDot constructor

const JumpingDot({
  1. Key? key,
  2. required Animation<double> animation,
  3. required Color dotColor,
  4. required double dotSize,
})

Implementation

const JumpingDot({
  Key? key,
  required Animation<double> animation,
  required this.dotColor,
  required this.dotSize,
}) : super(key: key, listenable: animation);