DotsDecorator constructor

const DotsDecorator({
  1. Color color = Colors.grey,
  2. Color activeColor = Colors.lightBlue,
  3. Size size = kDefaultSize,
  4. Size activeSize = kDefaultSize,
  5. ShapeBorder shape = kDefaultShape,
  6. ShapeBorder activeShape = kDefaultShape,
  7. EdgeInsets spacing = kDefaultSpacing,
})

Implementation

const DotsDecorator({
  this.color = Colors.grey,
  this.activeColor = Colors.lightBlue,
  this.size = kDefaultSize,
  this.activeSize = kDefaultSize,
  this.shape = kDefaultShape,
  this.activeShape = kDefaultShape,
  this.spacing = kDefaultSpacing,
});