Comment constructor
const
Comment({
- required CommentLevel level,
- required String content,
- Span? span,
Bundles the comment's level and content.
Implementation
const Comment({required this.level, required this.content, this.span});