LineRange constructor

const LineRange(
  1. int startLine,
  2. int endLine
)

Implementation

const LineRange(this.startLine, this.endLine)
  : assert(startLine >= 1, 'startLine must be >= 1'),
    assert(endLine >= startLine, 'endLine must be >= startLine');