How to save List to SharedPreferences in Flutter?
You should do these steps to save the object: convert your object to map with toMap() method encode your map to string with encode(…) method save the string to shared preferences for restoring your object: decode shared preference string to a map with decode(…) method use fromJson() method to get your object UPDATE FULL SAMPLE … Read more