ValueNode constructor

ValueNode(
  1. String value,
  2. String? raw, {
  3. String type = 'Identifier',
  4. Location? loc,
})

Implementation

ValueNode(
  this.value,
  this.raw, {
  String type = 'Identifier',
  Location? loc,
}) : super(type, loc);