PagerIndicator constructor

const PagerIndicator({
  1. required PagerItemTypes type,
  2. int? index,
  3. bool isFocused = false,
  4. BoxBorder? focusBorder,
  5. double borderRadius = 10,
  6. Color pageIndicatorColor = Colors.grey,
  7. Color pageIndicatorActiveColor = Colors.black,
  8. Color checkedPageColor = Colors.black,
  9. double pageTextSize = 14,
  10. double pageIndicatorHeight = 30,
  11. Key? key,
})

Implementation

const PagerIndicator({
  required this.type,
  this.index,
  this.isFocused = false,
  this.focusBorder,
  this.borderRadius = 10,
  this.pageIndicatorColor = Colors.grey,
  this.pageIndicatorActiveColor = Colors.black,
  this.checkedPageColor = Colors.black,
  this.pageTextSize = 14,
  this.pageIndicatorHeight = 30,
  Key? key,
}):super(key: key);