FCRotatingThreeCircle constructor

const FCRotatingThreeCircle({
  1. Key? key,
  2. Duration duration = const Duration(milliseconds: 1500),
  3. List<Color> colorSet = const [Color(0xFFF4B400), Color(0xFFDB4437), Color(0xFF0F9D58)],
  4. double circleHeight = 15,
  5. double circleWidth = 15,
})

Implementation

const FCRotatingThreeCircle({
  Key? key,
  this.duration = const Duration(milliseconds: 1500),
  this.colorSet = const [
    Color(0xFFF4B400),
    Color(0xFFDB4437),
    Color(0xFF0F9D58),
  ],
  this.circleHeight = 15,
  this.circleWidth = 15,
}) : super(key: key);