Skip to content

Instantly share code, notes, and snippets.

@nanlabsweb
Created April 5, 2018 16:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nanlabsweb/f9175deeead984a30921138a60de6317 to your computer and use it in GitHub Desktop.
Save nanlabsweb/f9175deeead984a30921138a60de6317 to your computer and use it in GitHub Desktop.
Get data from firestore with Coroutines.
suspend fun getAllPets(): List<Pet> {
val result = firestoreDataBase.collection("pets").get().await()
return setPetsFromSnapshotIntoMutableList(result)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment