Created
October 25, 2024 17:16
-
-
Save bltavares/89b6d5c6cef6fcd69e47ad99e3c609c3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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() { | |
final a = {'1': 2}; | |
final Map<String, num>? b = null; | |
print({ | |
...a, | |
...?b, | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment