SourceLine constructor

const SourceLine(
  1. String text, {
  2. File? file,
  3. String? element,
  4. int line = -1,
  5. int startChar = -1,
  6. int endChar = -1,
  7. int indent = 0,
})

Implementation

const SourceLine(
  this.text, {
  this.file,
  this.element,
  this.line = -1,
  this.startChar = -1,
  this.endChar = -1,
  this.indent = 0,
});