AdjacentStringsImpl constructor

AdjacentStringsImpl({
  1. required List<StringLiteralImpl> strings,
})

Initialize a newly created list of adjacent strings. To be syntactically valid, the list of strings must contain at least two elements.

Implementation

AdjacentStringsImpl({
  required List<StringLiteralImpl> strings,
}) {
  _strings._initialize(this, strings);
}