DotsLoaderView constructor

const DotsLoaderView({
  1. Key? key,
  2. int dotCount = 4,
  3. double dotSize = 10.0,
  4. Duration duration = const Duration(milliseconds: 800),
  5. Color dotColor = Colors.white,
})

Implementation

const DotsLoaderView({
  super.key,
  this.dotCount = 4,
  this.dotSize = 10.0,
  this.duration = const Duration(milliseconds: 800),
  this.dotColor = Colors.white,
});