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 497036c commit 3749240Copy full SHA for 3749240
lib/src/generate_screen_access/generator.dart
@@ -10,6 +10,7 @@
10
11
import 'package:df_gen_core/df_gen_core.dart';
12
import 'package:df_log/df_log.dart';
13
+import '_extract_class_insights_from_dart_file.dart';
14
15
// ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
16
@@ -61,8 +62,8 @@ Future<void> generateScreenAccess({
61
62
);
63
64
// For each file...
- for (final filePathResult in sourceFileExplorerResults.filePathResults
65
- .where((e) => e.category == _Categories.DART)) {
+ for (final filePathResult
66
+ in sourceFileExplorerResults.filePathResults.where((e) => e.category == _Categories.DART)) {
67
final filePath = filePathResult.path;
68
69
// Extract insights from the file.
0 commit comments