DEV Community

Christian Findlay
Christian Findlay

Posted on

Dart Immutable Collections

Link

Immutability is an important Dart concept. The immutable annotation marks a class as being immutable, but if the class has mutable properties, it is not really immutable. This is true in the case of collections. This article discusses why and how to use immutable collections on your Dart classes.

Top comments (0)