RotatingCirclesLoader constructor

const RotatingCirclesLoader({
  1. Key? key,
  2. int ballsCount = 6,
  3. double loaderRadius = 30,
  4. double ballRadius = 5,
  5. Color ballsColor = Colors.white,
})

Creates a rotating circles loader.

Implementation

const RotatingCirclesLoader({
  super.key,
  this.ballsCount = 6,
  this.loaderRadius = 30,
  this.ballRadius = 5,
  this.ballsColor = Colors.white,
});