Skip to content

Instantly share code, notes, and snippets.

@PeterHdd
Created April 3, 2020 21:43
Show Gist options
  • Select an option

  • Save PeterHdd/4f76c67dbcf59dee621fc325b2aa950d to your computer and use it in GitHub Desktop.

Select an option

Save PeterHdd/4f76c67dbcf59dee621fc325b2aa950d to your computer and use it in GitHub Desktop.
void _onPressed()async{
var firebaseUser = await FirebaseAuth.instance.currentUser();
firestoreInstance
.collection("users")
.document(firebaseUser.uid)
.updateData({"age": 60}).then((_) {
print("success!");
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment