I had to change the generators/build.yaml file to get the actual code gen to work ... (.g.dart ==> .g.part) ```build_extensions: { ".dart": [".g.dart"] }``` to this ```build_extensions: { ".dart": [".g.part"] }```
I had to change the generators/build.yaml file to get the actual code gen to work ... (.g.dart ==> .g.part)
build_extensions: { ".dart": [".g.dart"] }to this
build_extensions: { ".dart": [".g.part"] }