Open
Description
In Flutter, we pass lists around but it is a convention that once you have passed a list to an object, you no longer "own" the list and are not allowed to modify it.
Unfortunately, nothing in the language, API, or tooling actually support this, and so it's very easy for our customers to think they are keeping ownership of the list and for them to then run into trouble when either the changes have no effect, or the changes unexpectedly have an effect, depending on what they were trying to do.
Possible ways we could address this:
- having a way to "seal" a List object and thus prevent people who have references to it from ever modifying the list again.
- having a way to be notified when a List object created from a literal is changed, so that we could then throw with a message that says "you can't modify the list"
- have a way to very cheaply "copy" a List object created from a literal, using techniques such as "copy on write", so that we can say that later modifying the list is fine but doesn't affect the widgets that used the original copy. (Ideally such a solution would be compatible with passing const lists to const constructors but having those same constructors usable with
new
and getting this copy-on-write behaviour.)