我正在从Firestore提取数据以在Flutter网站中进行渲染。在此之前,在移动设备中确实非常容易,我们只需要像这样添加流构建器流
stream :Firestore.instance.collection("puppies").snapshots();
现在在Flutter网站中,我们还没有Firestore软件包,因此我们正在通过Firebase软件包使用
firebase: ^5.0.4
这是代码
Firestore.getInstance(jsObject).collection("puppies").snapshots();
我需要在getInstrance中传递 firestore_interop.FirestoreJsImpl ,但这是什么,我如何传递它?