Podem me ajudar??Class 'List<ProductCl> ' has no instance getter ' result '.Receiver:Instance (length:3) of '_GrowableList' Tried calling: result )

Viewed 17

enter code here return ListView.builder( itemCount: snapshot.data.result, itemBuilder: (context, indice) { return ListTile( leading: Image.network(snapshot.data[indice].imagem), title: Text('${snapshot.data[indice].productCl}'), onTap: () { print( 'O produto selecionado foi ${snapshot.data[indice].productCl}'); }, ); }, );

0 Answers
Related