Comment constructor

Comment({
  1. List<String> comments = const [],
  2. String commentType = CommentType.commentDoubleBackSlash,
  3. String blockContinuationToken = CodeUnit.space,
  4. int depth = 0,
})

Implementation

Comment(
    {this.comments = const [],
    this.commentType = CommentType.commentDoubleBackSlash,
    this.blockContinuationToken = CodeUnit.space,
    int depth = 0})
    : super(depth);