StringInterpolation constructor

StringInterpolation({
  1. ComputedValue? computedValue,
  2. required List<InterpolationElement> elements,
  3. String? listLiteral,
  4. required String source,
})

Implementation

StringInterpolation({
  super.computedValue,
  required this.elements,
  String? listLiteral,
  required super.source,
}) : super(literalValue: listLiteral);