Indicator constructor

Indicator({
  1. Key? key,
  2. int itemCount = 0,
  3. int currentIndex = 0,
})

Implementation

Indicator({
  Key? key,
  this.itemCount = 0,
  this.currentIndex = 0,
}) : super(key: key);