CommentTile constructor

const CommentTile({
  1. Key? key,
  2. required FeatureChecker featureChecker,
  3. required CommentService service,
  4. required Comment comment,
  5. void onLike()?,
  6. void onDelete()?,
  7. void onReply()?,
  8. void onExpand()?,
  9. void onLoadMoreReplies()?,
  10. required void onUserBlocked(),
  11. CommentsTheme? theme,
  12. CommentsAppActions? appActions,
})

Implementation

const CommentTile({
  super.key,
  required this.featureChecker,
  required this.service,
  required this.comment,
  this.onLike,
  this.onDelete,
  this.onReply,
  this.onExpand,
  this.onLoadMoreReplies,
  required this.onUserBlocked,
  this.theme,
  this.appActions,
});