Home > Back-end >  what dose exactly Vs code debug console command line at bottom do ? How to use it
what dose exactly Vs code debug console command line at bottom do ? How to use it

Time:08-13

enter image description here

this command line at bottem of Vs code what dose exactly do? how its usefull I had searched alot but I cant figured out what is it and I cant find any documentation about,and last question I'm flutter dev how can I use it at debug proccess

CodePudding user response:

Debug console is used to debug your code. You can read more here.

CodePudding user response:

Let’s say that you hit a breakpoint with a httpresponse while debuging, and you want to know whats in it you can call httpresponse.body etc. In the command line to see whats in the body.

  • Related