removeVSCodeLaunchConfig static method

void removeVSCodeLaunchConfig()

Implementation

static void removeVSCodeLaunchConfig() {
  final root = ConfigService.root;
  final launchFile = File(p.join(root, '.vscode/launch.json'));
  if (launchFile.existsSync()) launchFile.deleteSync();
}