CommentView constructor

const CommentView({
  1. Key? key,
  2. ApiComment? comment,
  3. ApiPost? post,
  4. Function? onError,
  5. required ApiForum? forum,
  6. Function? rerenderParent,
  7. int? index,
})

Implementation

const CommentView({
  Key? key,
  this.comment,
  this.post,
  this.onError,
  required this.forum,
  this.rerenderParent,
  this.index,
}) : super(key: key);