Search code examples
databasefluttersharedpreferences

Is it possible to restore flutter shared preferences data with device backup?


I am trying to make flutter application with specific data storage requirements:

  1. Data is stored in a safest way possible
  2. If data is changed or deleted, there is no way back

So i am looking for plugin/custom solution that can prevent any data changes on device backup's or other system cases.

Is it possible to make application data invisible for system backup?

Can i use shared preferences/ or i'd better pick another plugin?

Thanks!


Solution

  • using shared preferences as too much has system overhead, so i recommend to you for using another table on you local storage for deleting record from anywhere of you app.