Last active
June 5, 2024 17:18
-
-
Save jezell/be1beabcbd3837916621f4c78d474c9b 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
class Test { | |
late Object? x = null; | |
void talk() { | |
print("value: $x"); | |
} | |
} | |
void main() { | |
Test()..talk(); | |
} |
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
name: quickfix | |
description: A sample command-line application. | |
version: 1.0.0 | |
# repository: https://github.com/my_org/my_repo | |
environment: | |
sdk: ^3.4.0 | |
# Add regular dependencies here. | |
dependencies: | |
# path: ^1.8.0 | |
dev_dependencies: | |
lints: ^3.0.0 | |
test: ^1.24.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment