How to get the contacts which is only in firebase in flutter

Viewed 29

This is user collection

I want get contact and show to the user only the contacts which is in firebase like Whatsapp

Reference image

1 Answers

There is an excellent documentation for that in Firebase docs.

Check the docs

Example for your collection can be

Firestore.instance.collection("users").get()

Remember its good practice to paginate large collection, from my perspective it seems your collection is going to be large. Pagination

Related