LauncherNews constructor

LauncherNews({
  1. String? title,
  2. String? tag,
  3. String? category,
  4. String? date,
  5. String? text,
  6. PlayPageImage? playPageImage,
  7. NewsPageImage? newsPageImage,
  8. String? readMoreLink,
  9. bool? cardBorder,
  10. List<String>? newsType,
  11. required String id,
})

Implementation

LauncherNews({
  this.title,
  this.tag,
  this.category,
  this.date,
  this.text,
  this.playPageImage,
  this.newsPageImage,
  this.readMoreLink,
  this.cardBorder,
  this.newsType,
  required this.id,
});