Token constructor

const Token(
  1. TokenType type,
  2. String value,
  3. int row,
  4. int col,
  5. int pos,
  6. double progress,
)

Implementation

const Token(
  this.type,
  this.value,
  this.row,
  this.col,
  this.pos,
  this.progress,
);