QuickTikTokLoader constructor

const QuickTikTokLoader({
  1. Key? key,
  2. double width = double.infinity,
  3. double height = 2.0,
  4. Color backgroundColor = const Color(0x33FFFFFF),
  5. Color progressColor = Colors.blue,
  6. Duration animationDuration = const Duration(milliseconds: 500),
  7. BorderRadius? borderRadius,
})

Implementation

const QuickTikTokLoader({
  super.key,
  this.width = double.infinity,
  this.height = 2.0,
  this.backgroundColor = const Color(0x33FFFFFF),
  this.progressColor = Colors.blue, // ✅ Default color changed here
  this.animationDuration = const Duration(milliseconds: 500),
  this.borderRadius,
});