CupertinoPageControl constructor

const CupertinoPageControl({
  1. Key? key,
  2. IconData? icon,
  3. String? name,
  4. dynamic function()?,
  5. Brightness? brightness,
  6. required bool isSelect,
  7. required int length,
  8. required Timer? timer,
  9. required int current,
})

Implementation

const CupertinoPageControl({
  super.key,
  this.icon,
  this.name,
  this.function,
  this.brightness,
  required this.isSelect,
  required this.length,
  required this.timer,
  required this.current,
});