pmu_flutter/lec2/lib/mystatic.dart

8 lines
98 B
Dart

class MyStatic {
static int staticField = 1;
MyStatic();
int get static => staticField;
}