type 'ReversedListIterable<Bar>' is not a subtype of type 'List<widget>' code example
Example: type 'List' is not a subtype of type 'List'
snapshot.data.documents.map<Widget>((document) {
return new ListTile(
title: new Text(document['name']),
subtitle: new Text("Class"),
);
}).toList()