6
ประเภท 'รายการ <dynamic>' ไม่ใช่ประเภทย่อยของประเภท 'รายการ <วิดเจ็ต>'
ฉันมีข้อมูลโค้ดที่คัดลอกมาจากตัวอย่าง Firestore: Widget _buildBody(BuildContext context) { return new StreamBuilder( stream: _getEventStream(), builder: (context, snapshot) { if (!snapshot.hasData) return new Text('Loading...'); return new ListView( children: snapshot.data.documents.map((document) { return new ListTile( title: new Text(document['name']), subtitle: new Text("Class"), ); }).toList(), ); }, ); } แต่ฉันได้รับข้อผิดพลาดนี้ type 'List<dynamic>' is not a subtype of type …