CircularOrbitLoader constructor

const CircularOrbitLoader({
  1. Key? key,
  2. double size = 100.0,
  3. Color color = Colors.white,
  4. Duration duration = const Duration(seconds: 2),
})

Implementation

const CircularOrbitLoader({
  super.key,
  this.size = 100.0,
  this.color = Colors.white,
  this.duration = const Duration(seconds: 2),
});