Location constructor

Location(
  1. String file,
  2. int offset,
  3. int length,
  4. int startLine,
  5. int startColumn, {
  6. int? endLine,
  7. int? endColumn,
})

Implementation

Location(
    this.file, this.offset, this.length, this.startLine, this.startColumn,
    {this.endLine, this.endColumn});