SliderItem constructor

const SliderItem({
  1. String? title,
  2. TextStyle? titleTextStyle,
  3. TextAlign? titleTextAlign,
  4. Widget? subtitle,
  5. required Widget widget,
})

subtitle optional subtitle Widget, if set it override the top-level subtitle widget

Implementation

const SliderItem({
  this.title,
  this.titleTextStyle,
  this.titleTextAlign,
  this.subtitle,
  required this.widget,
});