I am trying to call API's in flutter but when I am defining the variable _Welcome I am getting this error. Does anyone know how to fix it?
class _PostsPageState extends State<PostsPage> {
Future<Welcome> _Welcome; //error here
@override
void initState() {
_Welcome = API_Manager().getNews();
super.initState();
}