StringLiteralInfo constructor

StringLiteralInfo({
  1. required String content,
  2. required int lineNumber,
  3. int columnNumber = 0,
  4. bool isInterpolated = false,
  5. String? parentNode,
  6. String? constructorName,
  7. String? argumentName,
  8. required int offset,
  9. required int length,
  10. List<String> variables = const [],
})

Implementation

StringLiteralInfo({
  required this.content,
  required this.lineNumber,
  this.columnNumber = 0,
  this.isInterpolated = false,
  this.parentNode,
  this.constructorName,
  this.argumentName,
  required this.offset,
  required this.length,
  this.variables = const [],
});