QuickDotLoader constructor
const
QuickDotLoader({
- Key? key,
- Color? color = Colors.red,
- double size = 27.0,
- IndexedWidgetBuilder? itemBuilder,
- Duration duration = const Duration(milliseconds: 1100),
- AnimationController? controller,
- int? showDots = 3,
Implementation
const QuickDotLoader({
super.key,
this.color = Colors.red, // ✅ default color set from Colors
this.size = 27.0,
this.itemBuilder,
this.duration = const Duration(milliseconds: 1100),
this.controller,
this.showDots = 3,
});