Skip to content

Instantly share code, notes, and snippets.

@redbrogdon
Created June 5, 2020 22:02
Show Gist options
  • Select an option

  • Save redbrogdon/5a10deacfb995e0d6fccd7ae1abc4f9e to your computer and use it in GitHub Desktop.

Select an option

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