pmu_flutter/lec2/lib/mystatic.dart

8 lines
98 B
Dart
Raw Permalink Normal View History

2024-10-03 21:59:50 +04:00
class MyStatic {
static int staticField = 1;
MyStatic();
int get static => staticField;
}