E12002 Map Errors
map-immutable
cannot modify immutable map
When this occurs
Attempting to modify a const map
Example error message
error[E12002]:
cannot modify immutable map (declared as const)
How to fix
Use `var` instead of `const` for the map if you need to modify it.