data_classes
data_classes copied to clipboard
Exclude fields from generated copyWith or == methods
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 b;
})