We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0f63e6 commit d0bd9ebCopy full SHA for d0bd9eb
generator/lib/src/models/input_source.dart
@@ -0,0 +1,10 @@
1
+import 'package:analyzer/dart/element/type.dart';
2
+
3
+class InputSource {
4
5
+ final String name;
6
+ final DartType type;
7
8
+ InputSource(this.type, this.name);
9
10
+}
generator/lib/src/models/output_source.dart
+class OutputSource {
+ OutputSource(this.type, this.name);
0 commit comments