Skip to content

Instantly share code, notes, and snippets.

@munificent
Created May 18, 2021 23:18
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 munificent/b4426a655ecd981562e132f300aa9d4b to your computer and use it in GitHub Desktop.
Save munificent/b4426a655ecd981562e132f300aa9d4b to your computer and use it in GitHub Desktop.
void method(String? s) {
if (s == null) return;
print(s.length);
}
void main() {
method(null);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment