OverBoard constructor

OverBoard({
  1. Key? key,
  2. required List<PageModel> pages,
  3. Offset? center,
  4. bool showBullets = true,
  5. String? skipText,
  6. String? nextText,
  7. String? finishText,
  8. required VoidCallback finishCallback,
  9. VoidCallback? skipCallback,
  10. Color buttonColor = Colors.white,
  11. Color activeBulletColor = Colors.white,
  12. Color inactiveBulletColor = Colors.white30,
  13. ImageProvider<Object>? backgroundProvider,
  14. bool allowScroll = false,
})

Implementation

OverBoard(
    {Key? key,
    required this.pages,
    this.center,
    this.showBullets = true,
    this.skipText,
    this.nextText,
    this.finishText,
    required this.finishCallback,
    this.skipCallback,
    this.buttonColor = Colors.white,
    this.activeBulletColor = Colors.white,
    this.inactiveBulletColor = Colors.white30,
    this.backgroundProvider,
    this.allowScroll = false})
    : super(key: key);