作者:渊博的效力 | 来源:互联网 | 2023-08-06 14:37
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:
我配置正确请帮忙
回答
没有名为Firestore
. 使用FirebaseFirestore.instance
来代替。
例子:
var snapshot = FirebaseFirestore.instance
.collection('chat')
.orderBy('createdAt', descending: true)
.snapshots();