In Flutter Web, when I run a debug session in Chrome from IDE, all the data (cookies, local storage, etc) is wiped out on the next run. For example, if I log in on my website, I become logged out on the next run.
How to keep browser data between runs?
PS: I had read a similar question: Flutter web local storage but its author satisfied with the explanation of why the data is not kept. I want to keep the data and curious about a way to achieve that. On an Android device (even on an Emulator), data is kept. I want to achieve the same in the browser.

