CommentDisplayBox constructor

const CommentDisplayBox({
  1. required CommentDTO comment,
  2. required ManageComment manageComment,
  3. Key? key,
})

Implementation

const CommentDisplayBox({
  required this.comment,
  required this.manageComment,
  Key? key,
}) : super(key: key);