AnimatedDots constructor

const AnimatedDots({
  1. Key? key,
  2. Duration duration = const Duration(milliseconds: 250),
})

Implementation

const AnimatedDots({
  super.key,
  this.duration = const Duration(milliseconds: 250),
});