Token constructor

const Token(
  1. Iterable<int> _runes,
  2. TokenType type, {
  3. int start = 0,
  4. int end = 0,
  5. int lineStart = 0,
  6. int lineNumber = 1,
})

Implementation

const Token(
  this._runes,
  this.type, {
  this.start = 0,
  this.end = 0,
  this.lineStart = 0,
  this.lineNumber = 1,
});