collectChildren method
void
collectChildren(
- InspectionCache cache, {
- required String stdlibPath,
- required Module parentModule,
override
Collects all children of this entry during the inspection process.
Implementation
@override
void collectChildren(
InspectionCache cache, {
required String stdlibPath,
required Module parentModule,
}) {
super.collectChildren(
cache,
stdlibPath: stdlibPath,
parentModule: parentModule,
);
_extractFieldsFromInit(parentModule);
_extractFieldsFromDataclassFields(parentModule);
}