data_classes icon indicating copy to clipboard operation
data_classes copied to clipboard

Exclude fields from generated copyWith or == methods

Open vendik opened this issue 5 years ago • 0 comments

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;
})

vendik avatar Feb 28 '20 17:02 vendik