AdjacentStrings constructor

AdjacentStrings({
  1. ComputedValue? computedValue,
  2. String? literalValue,
  3. required String source,
  4. required List<StringLiteral> strings,
})

Implementation

AdjacentStrings({
  super.computedValue,
  String? literalValue,
  required super.source,
  required this.strings,
}) : super(
        literalValue: literalValue,
      );