Jinali Ghogharijinali.hashnode.devยทMar 29, 2024Dart: Static variable & static methodStatic 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...26 readsDartDartAdd a thoughtful commentNo comments yetBe the first to start the conversation.