CommentTile constructor
const
CommentTile({
- Key? key,
- required FeatureChecker featureChecker,
- required CommentService service,
- required Comment comment,
- void onLike()?,
- void onDelete()?,
- void onReply()?,
- void onExpand()?,
- void onLoadMoreReplies()?,
- required void onUserBlocked(),
- CommentsTheme? theme,
- 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,
});