I created a todo app and I want to save the todo List locally on users phone using getStorage package:
class Taskdata with ChangeNotifier {
final List<Task> _tasks = [];
}
I created a todo app and I want to save the todo List locally on users phone using getStorage package:
class Taskdata with ChangeNotifier {
final List<Task> _tasks = [];
}