Zaza.codes
Zaza.codes

Reputation: 317

Cache response body from http request in flutter

I am looking for a way to cache the response from a http get request and everytime the user opens the app i want to compare the data in the cache with the data from the request and display the http response instead of the cached data if there is any difference

Upvotes: 0

Views: 2095

Answers (1)

Bruno J.
Bruno J.

Reputation: 254

You should try using the package flutter_cache_manager, that should fit your needs.

Upvotes: 1

Related Questions