Skip to content

Instantly share code, notes, and snippets.

@RedBrogdon
Created June 5, 2020 22:02
Show Gist options
  • Save RedBrogdon/5a10deacfb995e0d6fccd7ae1abc4f9e to your computer and use it in GitHub Desktop.
Save RedBrogdon/5a10deacfb995e0d6fccd7ae1abc4f9e to your computer and use it in GitHub Desktop.
Testing null safety
void main() {
print(const [null, 3] is List<int>);
print([null, 3] is List<int>);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment