LoadingBumpingLine.circle constructor

const LoadingBumpingLine.circle(
  1. {Key? key,
  2. AnimationController? controller,
  3. Color backgroundColor = Colors.blueGrey,
  4. Color borderColor = Colors.transparent,
  5. double size = 50.0,
  6. double? borderSize,
  7. IndexedWidgetBuilder? itemBuilder,
  8. Duration duration = const Duration(milliseconds: 800)}
)

Creates the LoadingBumpingLine animation with a circle shape

Implementation

const LoadingBumpingLine.circle({
  Key? key,
  this.controller,
  this.backgroundColor = Colors.blueGrey,
  this.borderColor = Colors.transparent,
  this.size = 50.0,
  this.borderSize,
  this.itemBuilder,
  this.duration = const Duration(milliseconds: 800),
})  : _shape = BoxShape.circle,
      super(key: key);