ConstantToken constructor

ConstantToken(
  1. Constant constant, {
  2. required ConstantTokenType type,
  3. required String rawValue,
  4. int globalOffset = -1,
})

Creates the token.

Implementation

ConstantToken(this.constant,
    {required super.type, required super.rawValue, super.globalOffset});