Skip to content

Instantly share code, notes, and snippets.

@imrhk
Created January 19, 2022 12:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imrhk/add585dfb9d0ba7f93513b3a95759f90 to your computer and use it in GitHub Desktop.
Save imrhk/add585dfb9d0ba7f93513b3a95759f90 to your computer and use it in GitHub Desktop.
Dart optional argument
void main() async {
foo("Test", null);
}
void foo(String a, [String? b = "c"]) {
print(a);
print(b);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment