ListViewSliderRF constructor

const ListViewSliderRF({
  1. dynamic modelList,
  2. Function? builder,
  3. double height = 150,
  4. EdgeInsets? padding,
  5. WidgetStyleRF? style,
  6. Widget? placeholder,
  7. dynamic placeholderLines = 6,
  8. bool showIndicator = false,
  9. Color activeDotColor = Colors.red,
  10. Color dotColor = Colors.grey,
})

Implementation

const ListViewSliderRF({
  this.modelList,
  this.builder,
  this.height = 150,
  this.padding,
  this.style,
  this.placeholder,
  this.placeholderLines = 6,
  this.showIndicator = false,
  this.activeDotColor = Colors.red,
  this.dotColor = Colors.grey,
});