LiteralNode constructor

LiteralNode(
  1. dynamic value,
  2. String? raw, {
  3. String type = 'Literal',
  4. Location? loc,
})

Implementation

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