CircleDualDotsLoader constructor

const CircleDualDotsLoader({
  1. Key? key,
  2. double size = 48,
  3. Color color = Colors.white,
  4. Color dotColor = const Color(0xFFFF3D00),
  5. double dotSize = 6.0,
  6. int duration = 1000,
})

Implementation

const CircleDualDotsLoader({
  super.key,
  this.size = 48,
  this.color = Colors.white,
  this.dotColor = const Color(0xFFFF3D00),
  this.dotSize = 6.0,
  this.duration = 1000,
}) : assert(size > 0 && duration > 0 && dotSize > 0);