LoadingBouncingLine constructor

LoadingBouncingLine(
  1. {Key key,
  2. int noOfDots,
  3. AnimationController controller,
  4. List<Color> backgroundColor,
  5. Color borderColor = Colors.transparent,
  6. double size = 50.0,
  7. double borderSize,
  8. IndexedWidgetBuilder itemBuilder,
  9. Duration duration = const Duration(milliseconds: 1000)}
)

Implementation

LoadingBouncingLine({
  Key key,
  this.noOfDots,
  this.controller,
  this.backgroundColor,
  this.borderColor = Colors.transparent,
  this.size = 50.0,
  this.borderSize,
  this.itemBuilder,
  this.duration = const Duration(milliseconds: 1000),
}) : super(key: key);