0

I need to transfer this configuration to the visual file 'launch.json,' but it's not working when I edit the parameters, and the startup parameters are not specifically listed either.

Android Studio | Debug config

VS Code | Debug config

I already tried adding the 'args' in VS Code, but I still couldn't connect in the same way

1 Answers1

0

You can add the args property to add your arguments on your configuration like this

{
  "name": "app",
  "request": "launch",
  "type": "dart",
  "args": ["--web-port", "8000", "--dart-define", "ENVIRONMENT=DEV"]
},
F Perroch
  • 1,988
  • 2
  • 11
  • 23