File tree 3 files changed +7
-3
lines changed 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.3.7
2
+
3
+ - [ CHORE] update dev_dependencies
4
+
1
5
## 1.3.6
2
6
3
7
- [ FIX] fix Lists with indices always getting parsed into a Map
Original file line number Diff line number Diff line change 1
1
name : qs_dart
2
2
description : A query string encoding and decoding library for Dart. Ported from qs for JavaScript.
3
- version : 1.3.6
3
+ version : 1.3.7
4
4
homepage : https://techouse.github.io/qs/
5
5
repository : https://github.com/techouse/qs
6
6
documentation : https://pub.dev/documentation/qs_dart/latest/
@@ -18,7 +18,7 @@ dependencies:
18
18
dev_dependencies :
19
19
cli_script : ^1.0.0
20
20
euc : ^1.0.6+8
21
- lints : " >=3.0.0 <6 .0.0"
21
+ lints : " >=3.0.0 <7 .0.0"
22
22
path : ^1.9.0
23
23
test : ^1.25.5
24
24
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ class CustomObject {
17
17
18
18
CustomObject (this .value);
19
19
20
- operator [](String key) => key == 'prop' ? value : null ;
20
+ String ? operator [](String key) => key == 'prop' ? value : null ;
21
21
}
22
22
23
23
void main () {
You can’t perform that action at this time.
0 commit comments