FoundStringLiteral constructor

FoundStringLiteral({
  1. required String filePath,
  2. required CharacterLocation loc,
  3. required CharacterLocation locEnd,
  4. required String? stringValue,
  5. required StringLiteral stringLiteral,
})

Implementation

FoundStringLiteral({
  required this.filePath,
  required this.loc,
  required this.locEnd,
  required this.stringValue,
  required this.stringLiteral,
});