LoadingBouncingLine.circle constructor
const
LoadingBouncingLine.circle({
- Key? key,
- AnimationController? controller,
- Color backgroundColor = Colors.blue,
- Color borderColor = Colors.blue,
- double size = 50.0,
- double? borderSize,
- IndexedWidgetBuilder? itemBuilder,
- Duration duration = const Duration(milliseconds: 3000),
Creates the LoadingBouncingLine animation with a circle shape
Implementation
const LoadingBouncingLine.circle({
Key? key,
this.controller,
this.backgroundColor = Colors.blue,
this.borderColor = Colors.blue,
this.size = 50.0,
this.borderSize,
this.itemBuilder,
this.duration = const Duration(milliseconds: 3000),
}) : _shape = BoxShape.circle,
super(key: key);