Skip to content

Instantly share code, notes, and snippets.

@hasanalisiseci
Last active November 2, 2020 18:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hasanalisiseci/0c3f321f182de0e0d78dda1a939e4906 to your computer and use it in GitHub Desktop.
Save hasanalisiseci/0c3f321f182de0e0d78dda1a939e4906 to your computer and use it in GitHub Desktop.
void getNotes() async {
var notesFuture = _databaseHelper.getAllNotes();
await notesFuture.then((data) {
setState(() {
this.allNotes = data;
});
});
}
@override
void initState() {
super.initState();
getNotes();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment