Created
May 12, 2022 14:45
-
-
Save Maistho/ed98bcfaeaa9b683f0445130fe21190d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
Test(); | |
} | |
class Test { | |
static late final TestInstance staticLateFinal = TestInstance('static late final'); | |
static final TestInstance staticFinal = TestInstance('static final'); | |
static TestInstance static = TestInstance('static'); | |
Test() { | |
print('Test'); | |
} | |
} | |
class TestInstance { | |
TestInstance(String input) { | |
print(input); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment