ChildIndicator constructor

const ChildIndicator({
  1. required Color childColor,
  2. required Color parentColor,
  3. required IndicatorPosition position,
  4. double middleBottomFixer = 0,
  5. bool limitedCenter = true,
  6. Key? key,
})

Implementation

const ChildIndicator({
  required this.childColor,
  required this.parentColor,
  required this.position,
  this.middleBottomFixer = 0,
  this.limitedCenter = true,
  super.key,
});