Skip to content

Instantly share code, notes, and snippets.

@UmairJibran
Last active April 25, 2020 18:56
Show Gist options
  • Select an option

  • Save UmairJibran/c2c510cd7085c8e4c3008ed06e1559c8 to your computer and use it in GitHub Desktop.

Select an option

Save UmairJibran/c2c510cd7085c8e4c3008ed06e1559c8 to your computer and use it in GitHub Desktop.
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