Dots constructor

const Dots({
  1. Key? key,
  2. required int totalSlides,
  3. required Curve dotsCurve,
  4. required Axis scrollDirection,
  5. double? height,
  6. double? width,
})

Implementation

const Dots({
  Key? key,
  required this.totalSlides,
  required this.dotsCurve,
  required this.scrollDirection,
  this.height,
  this.width,
}) : super(key: key);