type 'Future<List<ChartSeries<BarChartModel, String>>>' is not a subtype of type 'List<ChartSeries<dynamic, dynamic>>'

Advertisements I’m having a problem using Firestore and Syncfusion Flutter Charts in Flutter. I’m querying from firestore some documents, awaiting the result so the function must be a Future, but I need it to be a List, not a Future<List>. This is my code: @override Widget build(BuildContext context) { return Expanded( child: SfCartesianChart( primaryXAxis: CategoryAxis(… Read More type 'Future<List<ChartSeries<BarChartModel, String>>>' is not a subtype of type 'List<ChartSeries<dynamic, dynamic>>'