Post constructor Null safety
Create a new Post.
Implementation
const Post({
required this.id,
required this.title,
required this.text,
required this.upVotes,
required this.downVotes,
required this.upVotesRatio,
required this.subReddit,
this.videoUrl,
this.imageUrl
});