@@ -86,6 +86,7 @@ is generated:
86
86
| -------------------------- | ------------------------------------------- | --------------------------- |
87
87
| any_map | [ JsonSerializable.anyMap] | |
88
88
| checked | [ JsonSerializable.checked] | |
89
+ | constructor | [ JsonSerializable.constructor] | |
89
90
| create_factory | [ JsonSerializable.createFactory] | |
90
91
| create_to_json | [ JsonSerializable.createToJson] | |
91
92
| disallow_unrecognized_keys | [ JsonSerializable.disallowUnrecognizedKeys] | |
@@ -103,25 +104,27 @@ is generated:
103
104
| | | [ JsonKey.toJson] |
104
105
| | | [ JsonKey.unknownEnumValue] |
105
106
106
- [ JsonSerializable.anyMap ] : https://pub.dev/documentation/json_annotation/4.1.0/json_annotation/JsonSerializable/anyMap.html
107
- [ JsonSerializable.checked ] : https://pub.dev/documentation/json_annotation/4.1.0/json_annotation/JsonSerializable/checked.html
108
- [ JsonSerializable.createFactory ] : https://pub.dev/documentation/json_annotation/4.1.0/json_annotation/JsonSerializable/createFactory.html
109
- [ JsonSerializable.createToJson ] : https://pub.dev/documentation/json_annotation/4.1.0/json_annotation/JsonSerializable/createToJson.html
110
- [ JsonSerializable.disallowUnrecognizedKeys ] : https://pub.dev/documentation/json_annotation/4.1.0/json_annotation/JsonSerializable/disallowUnrecognizedKeys.html
111
- [ JsonSerializable.explicitToJson ] : https://pub.dev/documentation/json_annotation/4.1.0/json_annotation/JsonSerializable/explicitToJson.html
112
- [ JsonSerializable.fieldRename ] : https://pub.dev/documentation/json_annotation/4.1.0/json_annotation/JsonSerializable/fieldRename.html
113
- [ JsonSerializable.genericArgumentFactories ] : https://pub.dev/documentation/json_annotation/4.1.0/json_annotation/JsonSerializable/genericArgumentFactories.html
114
- [ JsonSerializable.ignoreUnannotated ] : https://pub.dev/documentation/json_annotation/4.1.0/json_annotation/JsonSerializable/ignoreUnannotated.html
115
- [ JsonSerializable.includeIfNull ] : https://pub.dev/documentation/json_annotation/4.1.0/json_annotation/JsonSerializable/includeIfNull.html
116
- [ JsonKey.includeIfNull ] : https://pub.dev/documentation/json_annotation/4.1.0/json_annotation/JsonKey/includeIfNull.html
117
- [ JsonKey.defaultValue ] : https://pub.dev/documentation/json_annotation/4.1.0/json_annotation/JsonKey/defaultValue.html
118
- [ JsonKey.disallowNullValue ] : https://pub.dev/documentation/json_annotation/4.1.0/json_annotation/JsonKey/disallowNullValue.html
119
- [ JsonKey.fromJson ] : https://pub.dev/documentation/json_annotation/4.1.0/json_annotation/JsonKey/fromJson.html
120
- [ JsonKey.ignore ] : https://pub.dev/documentation/json_annotation/4.1.0/json_annotation/JsonKey/ignore.html
121
- [ JsonKey.name ] : https://pub.dev/documentation/json_annotation/4.1.0/json_annotation/JsonKey/name.html
122
- [ JsonKey.required ] : https://pub.dev/documentation/json_annotation/4.1.0/json_annotation/JsonKey/required.html
123
- [ JsonKey.toJson ] : https://pub.dev/documentation/json_annotation/4.1.0/json_annotation/JsonKey/toJson.html
124
- [ JsonKey.unknownEnumValue ] : https://pub.dev/documentation/json_annotation/4.1.0/json_annotation/JsonKey/unknownEnumValue.html
107
+ [ JsonSerializable.anyMap ] : https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonSerializable/anyMap.html
108
+ [ JsonSerializable.checked ] : https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonSerializable/checked.html
109
+ [ JsonSerializable.constructor ] : https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonSerializable/constructor.html
110
+ [ JsonSerializable.createFactory ] : https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonSerializable/createFactory.html
111
+ [ JsonSerializable.createToJson ] : https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonSerializable/createToJson.html
112
+ [ JsonSerializable.disallowUnrecognizedKeys ] : https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonSerializable/disallowUnrecognizedKeys.html
113
+ [ JsonSerializable.explicitToJson ] : https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonSerializable/explicitToJson.html
114
+ [ JsonSerializable.fieldRename ] : https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonSerializable/fieldRename.html
115
+ [ JsonSerializable.genericArgumentFactories ] : https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonSerializable/genericArgumentFactories.html
116
+ [ JsonSerializable.ignoreUnannotated ] : https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonSerializable/ignoreUnannotated.html
117
+ [ JsonSerializable.includeIfNull ] : https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonSerializable/includeIfNull.html
118
+ [ JsonKey.includeIfNull ] : https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonKey/includeIfNull.html
119
+ [ JsonKey.defaultValue ] : https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonKey/defaultValue.html
120
+ [ JsonKey.disallowNullValue ] : https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonKey/disallowNullValue.html
121
+ [ JsonKey.fromJson ] : https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonKey/fromJson.html
122
+ [ JsonKey.ignore ] : https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonKey/ignore.html
123
+ [ JsonKey.name ] : https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonKey/name.html
124
+ [ JsonKey.required ] : https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonKey/required.html
125
+ [ JsonKey.toJson ] : https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonKey/toJson.html
126
+ [ JsonKey.unknownEnumValue ] : https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonKey/unknownEnumValue.html
127
+
125
128
126
129
> Note: every ` JsonSerializable ` field is configurable via ` build.yaml ` –
127
130
> see the table for the corresponding key.
@@ -151,6 +154,7 @@ targets:
151
154
# The default value for each is listed.
152
155
any_map : false
153
156
checked : false
157
+ constructor : ' '
154
158
create_factory : true
155
159
create_to_json : true
156
160
disallow_unrecognized_keys : false
0 commit comments