YoutubeCommentTreeWidget constructor
YoutubeCommentTreeWidget({})
Implementation
YoutubeCommentTreeWidget({
super.key,
required Widget parent,
this.treeColor,
List<Widget> children = const <Widget>[],
}) : super(
children: [
LayoutId(id: MyLayoutId.base, child: parent),
// Tag the rest of the children
...children.map((child) => child),
],
);