Dot constructor

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

Implementation

const Dot(
    {super.key, required this.animation, required this.delay, this.dotColor});