Created
November 24, 2021 04:00
-
-
Save anovsiradj/eca1ef180d5e242528612463a281625e to your computer and use it in GitHub Desktop.
Dart NULL string is "null" as string
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
String tmp; | |
print(tmp.toString()); | |
print('null'); | |
print(tmp.toString() == 'null'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment