dependencies:
flutter:
sdk: flutter
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.2
cloud_firestore:
I config it properly please help
There is no class named Firestore. Use FirebaseFirestore.instance instead.
example:
var snapshot = FirebaseFirestore.instance
.collection('chat')
.orderBy('createdAt', descending: true)
.snapshots();
Change the name from 'Firestore' to 'FirebaseFirestore'.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With