Nils
Results
1
issues of
Nils
Right now the first found constructor is used for populating data initially. ```dart ConstructorElement _chooseConstructor( ClassElement outputClass, ClassElement _) { return outputClass.constructors.where((element) => !element.isFactory).first; } ``` It would be nice,...