data_classes
data_classes copied to clipboard
Dart packages that automatically generate data classes for you.
For a new version of the package, I consider completely overhauling the API of this package. **Fundamental problems of this package** * The mutable class is often not needed, people...
Would it be possible to add support for excluding fields from the generated copyWith, hashCode/== methods? For example: ``` class MutableState({ Exclude(copyWith == true, equals == true) String a; String...
Would it be possible to add support for optional named constructor parameters by specifying a default value in the base Mutable class? For example this class: ``` @GenerateDataClass() class MutableState...