Post constructor

const Post(
  1. {required PostModel data,
  2. bool showLinkedEvents = true,
  3. bool initiallyExpandCommentSection = false}
)

Implementation

const Post({
  required this.data,
  this.showLinkedEvents = true,
  this.initiallyExpandCommentSection = false,
});