1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| part of '_json_serializable_test_input.dart';
|
| @JsonSerializable()
| class ConfigurationImplicitDefaults {
| int field;
| }
|
| @JsonSerializable(
| anyMap: false,
| checked: false,
| createFactory: true,
| createToJson: true,
| disallowUnrecognizedKeys: false,
| explicitToJson: false,
| fieldRename: FieldRename.none,
| generateToJsonFunction: true,
| includeIfNull: true,
| nullable: true,
| useWrappers: false,
| )
| class ConfigurationExplicitDefaults {
| int field;
| }
|
| @JsonSerializable(
| createToJson: true,
| includeIfNull: true,
| nullable: true,
| disallowUnrecognizedKeys: true,
| fieldRename: FieldRename.snake,
| createFactory: true)
| class ConfigurationAllDefaultsOpposite {
| int field;
| }
|
|