-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Description
Question: How to realize this kind of mapping?
class Target {
final String text1;
final Sourse2 source2;
Target(this.text1, this.source2);
}
class Source {
final String text1;
final int source2Id;
Source(this.text1);
}
class Source2 {
final int id;
final String text2;
Source2(this.text2);
}
"Multiple sources" example is close to that, but not exactly.
Metadata
Metadata
Assignees
Labels
No labels