BlogArticle constructor

const BlogArticle({
  1. Key? key,
  2. String title = '',
  3. String articleImage = '',
  4. String description = '',
  5. String readDuration = '',
  6. String tag = '',
  7. String? articleLink,
})

Implementation

const BlogArticle({
  super.key,
  this.title = '',
  this.articleImage = '',
  this.description = '',
  this.readDuration = '',
  this.tag = '',
  this.articleLink,
});