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 3cd08a8 commit 3c1a734Copy full SHA for 3c1a734
json_serializable/lib/src/utils.dart
@@ -85,7 +85,7 @@ ClassConfig mergeConfig(
85
86
final constructor = annotation.constructor ?? config.constructor;
87
final constructorInstance =
88
- constructorByNameOrNull(classElement, constructor);
+ _constructorByNameOrNull(classElement, constructor);
89
90
final paramDefaultValueMap = constructorInstance == null
91
? <String, String>{}
@@ -112,7 +112,7 @@ ClassConfig mergeConfig(
112
);
113
}
114
115
-ConstructorElement? constructorByNameOrNull(
+ConstructorElement? _constructorByNameOrNull(
116
ClassElement classElement,
117
String name,
118
) {
0 commit comments