CustomIndicator constructor

const CustomIndicator({
  1. Key? key,
  2. required int length,
  3. required int current,
  4. Color? activeColor,
  5. Color? inactiveColor,
  6. double? height,
  7. double? width,
  8. EdgeInsets? margin,
  9. EdgeInsets? padding,
  10. double? size,
})

Implementation

const CustomIndicator({
  super.key,
  required this.length,
  required this.current,
  this.activeColor,
  this.inactiveColor,
  this.height,
  this.width,
  this.margin,
  this.padding,
  this.size
});