LoaderChasingDots constructor
const
LoaderChasingDots({
- Key? key,
- Color? color,
- double? size = 50.0,
- IndexedWidgetBuilder? itemBuilder,
- Duration? duration = const Duration(milliseconds: 2000),
Implementation
const LoaderChasingDots({
Key? key,
this.color,
this.size = 50.0,
this.itemBuilder,
this.duration = const Duration(milliseconds: 2000),
}) : assert(
!(itemBuilder is IndexedWidgetBuilder && color is Color) &&
!(itemBuilder == null && color == null),
'You should specify either a itemBuilder or a color'),
super(key: key);