Can I put ArrayList
or List
object to SharedPreferences
in Flutter? Cause I just realized that flutter haven't gson in their dart
So..i want to save like favorite books by tapping star icon, and when I tap that, that books will be saved in sharedPreferences.
and I can see the list of my favorite books.
Save:
prefs.setStringList('key', yourList);
Retrieve:
var yourList = prefs.getStringList('key');