Skip to content

Commit eabee21

Browse files
committed
add acceptNullValue to copyWith function
1 parent f0bc244 commit eabee21

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

lib/basic_api/request.dart

+3-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,7 @@ class Request extends Equatable {
1111
});
1212

1313
/// 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(
1815
passthrough: json['passthrough'] as Map<String, dynamic>?,
1916
reqId: json['req_id'] as int?,
2017
);
@@ -42,10 +39,12 @@ class Request extends Equatable {
4239
Request copyWith({
4340
Map<String, dynamic>? passthrough,
4441
int? reqId,
42+
bool? acceptNullValue,
4543
}) =>
4644
Request(
4745
passthrough: passthrough ?? this.passthrough,
4846
reqId: reqId ?? this.reqId,
47+
acceptNullValue: acceptNullValue ?? false,
4948
);
5049

5150
/// Override equatable class.

0 commit comments

Comments
 (0)