BackgroundController constructor

BackgroundController({
  1. required int currentPage,
  2. required int totalPage,
  3. required Color? controllerColor,
  4. required bool indicatorAbove,
  5. required bool hasFloatingButton,
  6. required double indicatorPosition,
})

Implementation

BackgroundController({
  required this.currentPage,
  required this.totalPage,
  required this.controllerColor,
  required this.indicatorAbove,
  required this.hasFloatingButton,
  required this.indicatorPosition,
});