MoreDots constructor

const MoreDots({
  1. Key? key,
  2. Axis direction = Axis.horizontal,
  3. int count = 3,
  4. double? size,
  5. Color? color,
  6. double spacing = 2,
  7. EdgeInsetsGeometry? padding,
})

Implementation

const MoreDots({
  super.key,
  this.direction = Axis.horizontal,
  this.count = 3,
  this.size,
  this.color,
  this.spacing = 2,
  this.padding,
});