missing_ whitespace_ between_ adjacent_ strings
Details about the 'missing_whitespace_between_adjacent_strings' diagnostic produced by the Dart analyzer.
Missing whitespace between adjacent strings.
Description
#The analyzer produces this diagnostic for a pair of adjacent string literals unless either the left-hand string ends in whitespace or the right-hand string begins with whitespace.
Example
#The following code produces this diagnostic because neither the left nor the right string literal includes a space to separate the words that will be joined:
var s =
'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed'
'do eiusmod tempor incididunt ut labore et dolore magna';
Common fixes
#Add whitespace at the end of the left-hand literal or at the beginning of the right-hand literal:
var s =
'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed '
'do eiusmod tempor incididunt ut labore et dolore magna';
Unless stated otherwise, the documentation on this site reflects Dart 3.10.3. Report an issue.