Skip to content

Instantly share code, notes, and snippets.

@jezell
Last active June 5, 2024 17:18
Show Gist options
  • Save jezell/be1beabcbd3837916621f4c78d474c9b to your computer and use it in GitHub Desktop.
Save jezell/be1beabcbd3837916621f4c78d474c9b to your computer and use it in GitHub Desktop.
class Test {
late Object? x = null;
void talk() {
print("value: $x");
}
}
void main() {
Test()..talk();
}
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