BlogPost constructor
const
BlogPost({})
Implementation
const BlogPost({
required this.slug,
required this.title,
required this.description,
required this.date,
required this.bodyMarkdown,
this.subtitle,
this.author,
this.image,
this.category,
this.tags = const [],
this.draft = false,
this.views = 0,
});