Dart Analyze logoDart Analyze/
DRT-W1120

Use adjacent strings to concatenate string literalsDRT-W1120

Major severityMajor
Anti-pattern categoryAnti-pattern

DO use adjacent strings to concatenate string literals.

BAD:

raiseAlarm(
    'ERROR: Parts of the spaceship are on fire. Other ' +
    'parts are overrun by martians. Unclear which are which.');

GOOD:

raiseAlarm(
    'ERROR: Parts of the spaceship are on fire. Other '
    'parts are overrun by martians. Unclear which are which.');