xxxxxxxxxx
void convertFutureListToList() async {
Future<List> _futureOfList = _getList();
List list = await _futureOfList ;
print(list);
}
xxxxxxxxxx
Future<List> get FutureList {
// dutration
return [];
}
main()async {
var list = await FutureList;
}