Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. getTasks() {
  2. print('///////////////Get tasks///////////////');
  3. _fireStore
  4. .document('Userss')
  5. .collection('$userUid/Tasks')
  6. .getDocuments().then((QuerySnapshot docs) {
  7. if (docs.documents.isNotEmpty) {
  8. boool = true;
  9. setState(() {
  10. tasks = docs.documents[0].data;
  11. });
  12. }
  13. });
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement