unfreezed top-level constant

Freezed const unfreezed

Defines a potentially mutable data-class.

As opposed to freezed, properties of the object can be mutable. On the other hand, a data class will not implement ==.

Implementation

const unfreezed = Freezed(
  equal: false,
  addImplicitFinal: false,
  makeCollectionsUnmodifiable: false,
);