I am using VS Code and I need to start a debug session but turn sound null safety off to work around some bugs in Flutterfire. I do a plain run from the command line using
```
flutter run --no-sound-null-safety
```
However, I need to use the debugger. I've created this launch profile for VS Code but it doesn't turn off sound null safety. Anyone know the correct config?
```
"version": "0.2.0",
"configurations": [
{
"name": "admin",
"request": "launch",
"type": "dart",
"args": ["--no-sound-null-safety"]
}
]
```