Comment constructor

Comment(
  1. String text, {
  2. bool force = false,
})

The Comment widget generates a simple line with some annotations(# ...).

Implementation

Comment(String text, {this.force = false})
    : _text = text.startsWith('#') ? text : '# $text';