Skip to content

Instantly share code, notes, and snippets.

@Maistho
Created May 12, 2022 14:45
Show Gist options
  • Save Maistho/ed98bcfaeaa9b683f0445130fe21190d to your computer and use it in GitHub Desktop.
Save Maistho/ed98bcfaeaa9b683f0445130fe21190d to your computer and use it in GitHub Desktop.
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