Skip to content

Possibility to skip code generation for getters and setters in the class #8

@ArkadiuszDatka

Description

@ArkadiuszDatka

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions