Line constructor

Line(
  1. String content, {
  2. int? tabRemaining,
})

Implementation

Line(
  this.content, {
  this.tabRemaining,
}) : isBlankLine = emptyPattern.hasMatch(content);