Я пытаюсь сохранить данные моего Списка в хранилище на диске, используя общие настройки, но не знаю, как преобразовать json обратно в формат DateTime при попытке снова извлечь данные из памяти при перестроении / перезапуске приложения.
вот мой код:
String id;
String title;
double amount;
DateTime date;
Transaction({
@required this.id,
@required this.title,
@required this.amount,
@required this.date,
});
Transaction.fromMap(Map map)
: this.id = map['id'],
this.title = map['title'],
this.date = map['date'],
this.amount = map['amount'];
Map toMap() {
return {
'id': this.id,
'title': this.title,
'date': this.date.toIso8601String(),
'amount': this.amount,
};
}
}
вот где я использую sharedPreferences
@override
void initState() {
initSharedPreferences();
super.initState();
}
initSharedPreferences() async {
sharedPreferences = await SharedPreferences.getInstance();
loadData();
}
void saveData() {
setState(() {
List<String> spList =
transactions.map((item) => json.encode(item.toMap())).toList();
var list = sharedPreferences.setStringList('list', spList);
print(list);
});
}
void loadData() {
List<String> spList = sharedPreferences.getStringList('list');
transactions =
spList.map((item) => Transaction.fromMap(json.decode(item))).toList();
setState(() {});
print(transactions);
}