Flutter debuging error (visual studio code)

 I'm trying to make an app for windows in flutter.

When debugging after writing in visual studio codeI am getting the following error.  

1\."message": "#include errors detected. Please update your includePath.   
                      Squiggles are disabled for this translation unit (C:\\flutter\\lprtest\\windows\\runner\\utils.cpp).",  

2\."message": "cannot open source file "stdint.h" (dependency of "flutter_windows.h").   
                      Please run the 'Select IntelliSense Configuration...' command to locate your system headers.", 
A red underline is created in #include <flutter_windows.h> in utils.cpp.

<utils.cpp>

#include "utils.h"

#include <flutter_windows.h> 
#include <io.h> 
#include <stdio.h> #include <windows.h>

#include <iostream>

Help me!

I upgraded flutter and dart to the latest version, but the same error. Maybe the environment settings are wrong?

Read more here: Source link