Solucionado (ver solução)
Solucionado
(ver solução)
5
respostas

Meu snapshot.data está com erro

Meu snapshot está com erro : A value of type 'Object?' can't be assigned to a variable of type 'List'. Try changing the type of the variable, or casting the right-hand type to 'List'.

5 respostas

Tenta mudar o Object? por dynamic, fiz aqui e funcionou.

se mudar como object, ele da outro erro no itemCount :(

solução!

Consegui Solucionar assim : final contacts = (snapshot.data as List);

Tive o mesmo problema e olhando para a sua solução, eu resolvi assim:

final List<Contact contacts = snapshot.data as List<Contact;

observação, coloque o sintal de > depois do tipo Contact

Consegui Resolver deve jeito também: final contacts = (snapshot.data as List);