FourRotatingDots constructor

const FourRotatingDots({
  1. Key? key,
  2. required double size,
  3. List<Color>? colors,
  4. int dotCount = 4,
})

Implementation

const FourRotatingDots({
  super.key,
  required this.size,
  this.colors,
  this.dotCount = 4,
});