Skip to content

Instantly share code, notes, and snippets.

@dexterp
Last active April 22, 2024 03:52
Show Gist options
  • Save dexterp/1117809e6282723a0307463b9f2f5f73 to your computer and use it in GitHub Desktop.
Save dexterp/1117809e6282723a0307463b9f2f5f73 to your computer and use it in GitHub Desktop.
DART Injector
class Injector {
List<String>? list;
List<String> makeList() {
list ??= <String>["a", "b", "c"]; // return (list ??= ...); // compact
return list!;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment