Answers for "Null safety feedback: Null check should allow type promotion but doesn't"

0

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{ }
Posted by: Guest on September-20-2021

Browse Popular Code Answers by Language