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. required void onUserBlocked(),
  10. CommentsTheme? theme,
  11. CommentsAppActions? appActions,
})

Implementation

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