How do you print a dollar sign $ in Dart
Dart strings can be either raw or … not raw (normal? cooked? interpreted? There isn’t a formal name). I’ll go with “interpreted” here, because it describes the problem you have. In a raw string, “$” and “\” mean nothing special, they are just characters like any other. In an interpreted string, “$” starts an interpolation … Read more