PostView constructor Null safety

const PostView(
  1. {required Post post,
  2. bool showSubreddit = true,
  3. Key? key}
)

Implementation

const PostView({
  required this.post,
  this.showSubreddit = true,
  Key? key
}) : super(key: key);