SubCommentDisplayBox constructor

const SubCommentDisplayBox({
  1. required SubCommentDTO comment,
  2. required ManageComment manageComment,
  3. Key? key,
  4. required int mainCommentId,
  5. required dynamic subCommentIndex,
})

Implementation

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