Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save anioutkazharkova/5fef865d086640e9c08b32a8bcb38ed2 to your computer and use it in GitHub Desktop.
Save anioutkazharkova/5fef865d086640e9c08b32a8bcb38ed2 to your computer and use it in GitHub Desktop.
suspend fun deletePost(id: String) {
val collection = FirebaseFirestore.getInstance().collection("posts")
val document = collection.document(id)
document.delete().await()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment