File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,7 @@ class Request extends Equatable {
11
11
});
12
12
13
13
/// Generate an instance from JSON.
14
- factory Request .fromJson (
15
- {bool acceptNullValue = false , required Map <String , dynamic > json}) =>
16
- Request (
17
- acceptNullValue: acceptNullValue,
14
+ factory Request .fromJson (Map <String , dynamic > json) => Request (
18
15
passthrough: json['passthrough' ] as Map <String , dynamic >? ,
19
16
reqId: json['req_id' ] as int ? ,
20
17
);
@@ -42,10 +39,12 @@ class Request extends Equatable {
42
39
Request copyWith ({
43
40
Map <String , dynamic >? passthrough,
44
41
int ? reqId,
42
+ bool ? acceptNullValue,
45
43
}) =>
46
44
Request (
47
45
passthrough: passthrough ?? this .passthrough,
48
46
reqId: reqId ?? this .reqId,
47
+ acceptNullValue: acceptNullValue ?? false ,
49
48
);
50
49
51
50
/// Override equatable class.
You can’t perform that action at this time.
0 commit comments