WidgetsCarousel constructor

const WidgetsCarousel({
  1. required List<Color> dot_colors_active,
  2. required Color dot_color_inactive,
  3. required List<Widget> children,
  4. bool auto_scroll = false,
  5. required dynamic update_current_page(
    1. int current_page
    ),
})

Implementation

const WidgetsCarousel({
  required this.dot_colors_active,
  required this.dot_color_inactive,
  required this.children,
  this.auto_scroll = false,
  required this.update_current_page,
});