PageRelatedArticle constructor

const PageRelatedArticle({
  1. required String url,
  2. required int webpageId,
  3. String? title,
  4. String? description,
  5. int? photoId,
  6. String? author,
  7. DateTime? publishedDate,
})

Page Related Article constructor.

Implementation

const PageRelatedArticle({
  required this.url,
  required this.webpageId,
  this.title,
  this.description,
  this.photoId,
  this.author,
  this.publishedDate,
}) : super._();