Null safety feedback: Null check should allow type promotion but doesn't
you can just add the type of the future you are using like this one
//this one wont work
body: FutureBuilder(
future:getDataFromJason(),
builder: (ctx, snapShot) {
if(snapShot.connectionState==ConnectionState.waiting){
return Center(child: CircularProgressIndicator());
}
else{}
//but this will just add the type of futureBuilder
body: FutureBuilder<dynamic>(
future:getDataFromJason(),
builder: (ctx, snapShot) {
if(snapShot.connectionState==ConnectionState.waiting){
return Center(child: CircularProgressIndicator());
}
else{ }