We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25dfd14 commit 93292c5Copy full SHA for 93292c5
lib/basic_api/request.dart
@@ -3,7 +3,7 @@ import 'package:equatable/equatable.dart';
3
/// Super class of all requests.
4
class Request extends Equatable {
5
/// Initializes.
6
- const Request({
+ Request({
7
this.msgType,
8
this.passthrough,
9
this.reqId,
@@ -27,7 +27,7 @@ class Request extends Equatable {
27
final int? reqId;
28
29
/// Determine accept null value in request or not.
30
- final bool acceptNullValue;
+ bool acceptNullValue;
31
32
/// Converts an instance to JSON.
33
Map<String, dynamic> toJson() => <String, dynamic>{
0 commit comments