Token constructor

const Token(
  1. String type,
  2. String value,
  3. int start
)

Creates a token of type holding value, found at start. Audited: 2026-06-12 11:26 EDT

Implementation

const Token(this.type, this.value, this.start);