You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently dor_gen supports only classes that were generated by itself.
Let's see example below
@Dto()
classA {
finalB b;
A(this.b);
}
classB {}
You can't include B as a field in A - dor_gen require B to be generated by dor_gen - it will look for this class in ./b.dto.g.dart but in fact is is somewhere else.
I think we should somehow support classes from outside of dor_gen, so they can be used and combined with each other.
The text was updated successfully, but these errors were encountered:
Currently dor_gen supports only classes that were generated by itself.
Let's see example below
You can't include
B
as a field inA
- dor_gen requireB
to be generated by dor_gen - it will look for this class in./b.dto.g.dart
but in fact is is somewhere else.I think we should somehow support classes from outside of dor_gen, so they can be used and combined with each other.
The text was updated successfully, but these errors were encountered: