saveData method
Implementation
void saveData(List<Map<String, dynamic>> dataList) async {
SharedPreferences prefs = await SharedPreferences.getInstance();
// Convert the list to a JSON string
String jsonString = jsonEncode(dataList);
// Save the JSON string in SharedPreferences
prefs.setString('dataList', jsonString);
}