Currently, the generator tries to generate code for all fields that are in the class, including those declared as getter and setter
class A {
final String a;
A(this.a);
String get value => 'a';
}
I think we should add the ability to mark a field that we do not want to generate.