PagerItem constructor

const PagerItem({
  1. Key? key,
  2. required PagerItemTypes type,
  3. int? index,
  4. bool isFocused = false,
})

Implementation

const PagerItem({
  super.key,
  required this.type,
  this.index,
  this.isFocused = false,
});