File tree 1 file changed +3
-3
lines changed
configurator/lib/src/utils
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ void _generateClass(
181
181
childName: key,
182
182
);
183
183
buffer.writeln (
184
- 'late final $childClassWithLocale $key = $childClassWithLocale ._ (_config);' );
184
+ 'late final $childClassWithLocale $key = $childClassWithLocale (_config);' );
185
185
}
186
186
} else if (value is PluralNode ) {
187
187
final returnType = value.rich ? 'TextSpan' : 'String' ;
@@ -269,7 +269,7 @@ void _generateMap({
269
269
queue.add (ClassTask (childClassNoLocale, value));
270
270
String childClassWithLocale =
271
271
getClassName (parentName: className, childName: key);
272
- buffer.writeln ('\' $key \' : $childClassWithLocale ._ (_config),' );
272
+ buffer.writeln ('\' $key \' : $childClassWithLocale (_config),' );
273
273
}
274
274
} else if (value is PluralNode ) {
275
275
buffer.write ('\' $key \' : ' );
@@ -367,7 +367,7 @@ void _generateList({
367
367
childName: key,
368
368
// locale: locale,
369
369
);
370
- buffer.writeln ('$childClassWithLocale ._ (_config),' );
370
+ buffer.writeln ('$childClassWithLocale (_config),' );
371
371
}
372
372
} else if (value is PluralNode ) {
373
373
_addPluralizationCall (
You can’t perform that action at this time.
0 commit comments