Skip to content

Instantly share code, notes, and snippets.

@bltavares
Created October 25, 2024 17:16
Show Gist options
  • Save bltavares/89b6d5c6cef6fcd69e47ad99e3c609c3 to your computer and use it in GitHub Desktop.
Save bltavares/89b6d5c6cef6fcd69e47ad99e3c609c3 to your computer and use it in GitHub Desktop.
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