Flutter – type 'Future<List<SurveyData>>' is not a subtype of type 'List<SurveyData>' in type cast (DART)
I'm trying to retrieve data from a database, and have made these two methods inside of a certain "TodoDB" class: Future<List<SurveyData>> fetchAll() async { final database = await DatabaseService().database; final survey = await database.rawQuery('''SELECT * from $tableName'''); return survey.map((survey) =>…