Comment constructor

const Comment({
  1. required CommentLevel level,
  2. required String content,
  3. Span? span,
})

Bundles the comment's level and content.

Implementation

const Comment({required this.level, required this.content, this.span});