Dart Analyze logoDart Analyze/
DRT-W1173

Avoid using braces in interpolation when not neededDRT-W1173

Major severityMajor
Anti-pattern categoryAnti-pattern

AVOID using braces in interpolation when not needed.

If you're just interpolating a simple identifier, and it's not immediately followed by more alphanumeric text, the {} can and should be omitted.

BAD:

print("Hi, ${name}!");

GOOD:

print("Hi, $name!");