Skip to content

Commit 93292c5

Browse files
committed
make acceptNullValue non final
1 parent 25dfd14 commit 93292c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/basic_api/request.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import 'package:equatable/equatable.dart';
33
/// Super class of all requests.
44
class Request extends Equatable {
55
/// Initializes.
6-
const Request({
6+
Request({
77
this.msgType,
88
this.passthrough,
99
this.reqId,
@@ -27,7 +27,7 @@ class Request extends Equatable {
2727
final int? reqId;
2828

2929
/// Determine accept null value in request or not.
30-
final bool acceptNullValue;
30+
bool acceptNullValue;
3131

3232
/// Converts an instance to JSON.
3333
Map<String, dynamic> toJson() => <String, dynamic>{

0 commit comments

Comments
 (0)