Group: style
Maturity: stable
Dart SDK: >= 2.8.1 • (Linter v0.1.111)
Since info is static, may be staleA raw string can be used to avoid escaping only backslashes and dollars.
BAD:
var s = 'A string with only \\ and \$';
GOOD:
var s = r'A string with only \ and $';
To enable the use_raw_strings
lint,
add use_raw_strings
under linter > rules in your
analysis_options.yaml
file:
linter:
rules:
- use_raw_strings