未定义的名称“Firestore”颤振

win*_*mad 1 firebase flutter google-cloud-firestore

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:
Run Code Online (Sandbox Code Playgroud)

我配置正确请帮忙

ali*_*tor 8

没有名为Firestore. 使用FirebaseFirestore.instance来代替。

例子:

var snapshot = FirebaseFirestore.instance
          .collection('chat')
          .orderBy('createdAt', descending: true)
          .snapshots();
Run Code Online (Sandbox Code Playgroud)