I have a webserver, that always returns a String in this json format:
{"status":100,"content":[{"version":"2.2.2"}]}
I want my flutter app to map this json to a Map<String, dynamic>` everytime on appstart to check if a new version is available.
To reduce server load, I don't want to use a websocket for this.
Since I am completely unexperienced with darts web i/o, I would appreciate some advice on where to start with this. I am lacking imagination and knowledge on what is needed for this usecase.