Files
rog_app/.vscode/launch.json

25 lines
696 B
JSON
Raw Normal View History

2022-06-14 14:37:59 +05:30
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "rogapp",
"request": "launch",
"type": "dart"
},
{
"name": "rogapp (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "rogapp (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release"
}
]
}