Slider constructor

Slider({
  1. int? id,
  2. String? title,
  3. String? subtitle,
  4. dynamic bgColor,
  5. bool? showTitle,
  6. bool? showSubtitle,
  7. double? imageOpacity,
  8. dynamic mediaKey,
  9. String? baseUrl,
  10. String? titleColor,
  11. String? subtitleColor,
  12. String? mediumImageUrl,
})

Implementation

Slider({
  this.id,
  this.title,
  this.subtitle,
  this.bgColor,
  this.showTitle,
  this.showSubtitle,
  this.imageOpacity,
  this.mediaKey,
  this.baseUrl,
  this.titleColor,
  this.subtitleColor,
  this.mediumImageUrl
});