VideoBlock constructor

VideoBlock({
  1. String? altText,
  2. String? authorName,
  3. String? description,
  4. String? providerIconUrl,
  5. String? providerName,
  6. required String title,
  7. String? titleUrl,
  8. required String thumbnailUrl,
  9. required String videoUrl,
})

Implementation

VideoBlock({
  this.altText,
  this.authorName,
  this.description,
  this.providerIconUrl,
  this.providerName,
  required this.title,
  this.titleUrl,
  required this.thumbnailUrl,
  required this.videoUrl,
});