Skip to content

Instantly share code, notes, and snippets.

@matanlurey
Created April 24, 2017 03:10
Show Gist options
  • Save matanlurey/d4e5c1f5367e612c8797006c1f3b754a to your computer and use it in GitHub Desktop.
Save matanlurey/d4e5c1f5367e612c8797006c1f3b754a to your computer and use it in GitHub Desktop.
An example of using const in Dart
main() {
const user = const {'name': 'Joe'};
// Static error: "Constant variables cannot be assigned a value".
user = {};
// Runtime error: "Unsupported operation: Cannot modify unmodifiable Map".
user['name'] = 'Jill';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment