Answers for "use a class variable in other class in flutter"

0

use a class variable in other class in flutter

class StatefulWidget{
   FlatButton(
    onPressed: (){
      Something.counter++; // This variable is your counter you mentioned earlier
   }
);
}
Posted by: Guest on June-18-2021
0

use a class variable in other class in flutter

class Something {
   static int counter; 
}
Posted by: Guest on June-18-2021

Code answers related to "use a class variable in other class in flutter"

Browse Popular Code Answers by Language