AnimatedBar constructor

const AnimatedBar({
  1. Key? key,
  2. required AnimationController? animController,
  3. required int position,
  4. required int currentIndex,
})

Implementation

const AnimatedBar({
  Key? key,
  required this.animController,
  required this.position,
  required this.currentIndex,
}) : super(key: key);