CircleIndicator constructor

const CircleIndicator({
  1. Key? key,
  2. required int index,
  3. required bool isSelected,
  4. double? circleRadious,
  5. Color? borderColor,
  6. Color? backgroundColor,
  7. Color? textColor,
})

Implementation

const CircleIndicator({
  Key? key,
  required this.index,
  required this.isSelected,
  this.circleRadious,
  this.borderColor,
  this.backgroundColor,
  this.textColor,
}) : super(key: key);