CommentAnchorModel constructor

CommentAnchorModel({
  1. required int index,
  2. int count = 0,
})

Implementation

CommentAnchorModel({
  required this.index, // 评论所在的列表索引页
  this.count = 0, // 该种类评论的条数
});