NewsSlideItem constructor

NewsSlideItem({
  1. required NewsSlideType type,
  2. String? text,
  3. String? html,
  4. dynamic backgroundColor,
  5. dynamic foregroundColor,
  6. dynamic mediaFile,
  7. dynamic newsReferencesModel,
})

Implementation

NewsSlideItem({
  required this.type,
  this.text,
  this.html,
  this.backgroundColor,
  this.foregroundColor,
  this.mediaFile,
  this.newsReferencesModel,
});