Dart: Static variable & static method
Static variable or class variable & static method is based on the class.
Static variable:
void main() {
var obj = A();
print(A.y);
}
class A
//int x = 10;
static int y = 20;
}
// output: 20
The class name is required to access th...
jinali.hashnode.dev2 min read