CommentTile constructor
const
CommentTile({
- Key? key,
- required Discussion comment,
- required int index,
- required String currentUser,
- required String searchKey,
- required ItemScrollController itemScrollController,
- bool isPadded = false,
- void onReply()?,
- void onUpvote()?,
- List<
Discussion> ? allComments,
Implementation
const CommentTile({
Key? key,
required this.comment,
required this.index,
required this.currentUser,
required this.searchKey,
required this.itemScrollController,
this.isPadded = false,
this.onReply,
this.onUpvote,
this.allComments,
}) : super(key: key);