Estou recebendo esse erro no FutureBuilder, por que? Estou usando o sdk >=2.12 error: A value of type 'Object?' can't be assigned to a variable of type 'List'.
body: FutureBuilder(
initialData: [],
future: findAll(),
builder: (context, snapshot) {
final List<Contact> contacts = snapshot.data;
return ListView.builder(
itemBuilder: (context, index) {
final Contact contact = contacts[index];
return _ContactItem(contact);
},
itemCount: contacts.length,
);
},
),