Skip to content

Instantly share code, notes, and snippets.

@AbdullohBahromjonov
Created April 26, 2022 18:42
Show Gist options
  • Save AbdullohBahromjonov/eeab1914f02bfe209a32241c88b50e0a to your computer and use it in GitHub Desktop.
Save AbdullohBahromjonov/eeab1914f02bfe209a32241c88b50e0a to your computer and use it in GitHub Desktop.
Dart optionals
String? nullString = 'Abdulloh';
void main() {
nullString = null;
print (isNullString(nullString));
}
bool isNullString(String? someNullablesString) {
if (someNullablesString == null) {
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment