Skip to content

Instantly share code, notes, and snippets.

@timsneath
Created October 22, 2020 17:21
Show Gist options
  • Select an option

  • Save timsneath/bc1cdb3d06de86099026b30e6789dd89 to your computer and use it in GitHub Desktop.

Select an option

Save timsneath/bc1cdb3d06de86099026b30e6789dd89 to your computer and use it in GitHub Desktop.
// These are all nullable variables.
Text? t = Text('Hello'); // Can be null later.
final Status? s = getStatus(); // Maybe the function returns null.
String? n; // Is null at first. Can be null at any later time, too.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment