Flutter Firestore NoSuchMethodError
I'm developing app with flutter and trying to get data from firestore by using streambuilder method like so. body: new StreamBuilder<DocumentSnapshot>( stream: Firestore.instance.collection('user').document(uid).collection('userInfo').document(uid).snapshots(), builder: (BuildContext context, AsyncSnapshot<DocumentSnapshot> snapshot) { if (snapshot.connectionState == ConnectionState.waiting) return new Center(child: new CircularProgressIndicator()); if (snapshot.hasData) { return new Center( child: ListView( shrinkWrap: true, padding: EdgeInsets.only(left: 24.0, right: 24.0), children: <Widget>[ new Column( children: <Widget>[ new CircleAvatar( backgroundColor: Colors.transparent, radius: 48.0, child: Image.asset('assets/logo.png'), ), new Padd...