void convertFutureListToList() async { Future<List> _futureOfList = _getList(); List list = await _futureOfList ; print(list); }