FXPageIndicator constructor

const FXPageIndicator({
  1. Key? key,
  2. required int pageSize,
  3. required int currentPage,
  4. Color activeColor = Colors.blue,
  5. double activeSize = 10.0,
  6. Color inactiveColor = Colors.white54,
  7. double inactiveSize = 8.0,
})

Implementation

const FXPageIndicator({
  Key? key,
  required this.pageSize,
  required this.currentPage,
  this.activeColor = Colors.blue,
  this.activeSize = 10.0,
  this.inactiveColor = Colors.white54,
  this.inactiveSize = 8.0,
}) : super(key: key);