CommentTreeWidget<R, C> constructor

CommentTreeWidget<R, C>(
  1. R root,
  2. List<C> replies, {
  3. TreeThemeData treeThemeData = const TreeThemeData(lineColor: Colors.grey, lineWidth: 1),
  4. AvatarWidgetBuilder<R>? avatarRoot,
  5. ContentBuilder<R>? contentRoot,
  6. AvatarWidgetBuilder<C>? avatarChild,
  7. ContentBuilder<C>? contentChild,
})

Implementation

CommentTreeWidget(this.root, this.replies,
    {this.treeThemeData =
        const TreeThemeData(lineColor: Colors.grey, lineWidth: 1),
    this.avatarRoot,
    this.contentRoot,
    this.avatarChild,
    this.contentChild});