Token constructor

Token(
  1. TokenType? type,
  2. int line,
  3. int column,
  4. int index,
  5. String? value,
)

Implementation

Token(this.type, this.line, this.column, this.index, this.value);