我收到以下错误:
════════ 小部件库捕获的异常═════════════════════════════␕════════ ══════════════════
在构建 StreamBuilder(dirty, state: _StreamBuilderBaseState>#f469b) 时引发了以下 NoSuchMethodError:类 'QuerySnapshot' 没有实例方法 'document'。接收方:“QuerySnapshot”实例尝试调用:document("+918130343322")
body:
StreamBuilder(
stream: Firestore.instance.collection('users').snapshots(),
builder: (context, snapshot){
if(!snapshot.hasData) return Text('Loading data.....');
return
Center(child: Text(snapshot.data.document(_myMobile)["Name"]),);
_mymobile
是文档 ID。