Last active
April 25, 2020 18:56
-
-
Save UmairJibran/c2c510cd7085c8e4c3008ed06e1559c8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| String name; | |
| DocumentSnapshot _doc = await Firestore.instance | |
| .collection('usersName') | |
| .document('dummydata') | |
| .get() | |
| .timeout(Duration(seconds: 10)); | |
| (_doc.exists) ? name = _doc['name'] : name = null; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment