Skip to content

Instantly share code, notes, and snippets.

@PeterHdd
Last active October 16, 2020 10:27
Show Gist options
  • Select an option

  • Save PeterHdd/02433b7d25cb79d92f3833ea94893771 to your computer and use it in GitHub Desktop.

Select an option

Save PeterHdd/02433b7d25cb79d92f3833ea94893771 to your computer and use it in GitHub Desktop.
void _onPressed(){
var firebaseUser = FirebaseAuth.instance.currentUser;
firestoreInstance.collection("users").doc(firebaseUser.uid).set(
{
"name" : "john",
"age" : 50,
"email" : "example@example.com",
"address" : {
"street" : "street 24",
"city" : "new york"
}
}).then((_){
print("success!");
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment