I use flutter_inappwebview in my Flutter project. I load html asset file into InAppWebView:
...
InAppWebView(
initialFile: "assets/html/index.html",
initialSettings: settings,
),
...
If I change local file assets/html/index.html - there is no effect after Hot Restart. So I need to completely restart project.
Is it possible to change local asset html file without restarting project?
I found similar question, but it is about asset images. Clearing image cache not working in my case.