I'm building a Flutter app (Web). I want to have a debug section there. Part of it should be dumping HTTP Headers sent to the application. So I'd want to have access to an incoming request. What would be the right way to approach it?
So lets say my app sits at http://my.app. When user hits http://my.app I would like to see contents of their incoming request and then capture parts I'm interesting in like Headers.
Cheers!