Skip to content

Instantly share code, notes, and snippets.

@SametSahin10
Created July 12, 2024 20:35
Show Gist options
  • Save SametSahin10/c73c3f64e56a69d62c207d96e5d25a85 to your computer and use it in GitHub Desktop.
Save SametSahin10/c73c3f64e56a69d62c207d96e5d25a85 to your computer and use it in GitHub Desktop.
launch.json file of the Volt app
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Staging",
"request": "launch",
"type": "dart",
"args": [
"--flavor",
"staging"
]
},
{
"name": "Debug Prod",
"request": "launch",
"type": "dart",
"args": [
"--flavor",
"prod"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment