data_classes icon indicating copy to clipboard operation
data_classes copied to clipboard

Dart packages that automatically generate data classes for you.

Results 4 data_classes issues
Sort by recently updated
recently updated
newest added

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...