Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
fluttertpc_get
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Goddchen
2021-04-01 22:18:03 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
51b7f630fbdd76dfef108baa78430fbf2f441a04
51b7f630
1 parent
778d80b7
defaultDecode can be null
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
lib/get_connect/http/src/http.dart
lib/get_connect/http/src/http.dart
View file @
51b7f63
...
...
@@ -249,7 +249,7 @@ class GetHttpClient {
method:
'get'
,
url:
uri
,
headers:
headers
,
decoder:
decoder
??
(
defaultDecoder
as
Decoder
<
T
>),
decoder:
decoder
??
(
defaultDecoder
as
Decoder
<
T
>
?
),
contentLength:
0
,
));
}
...
...
Please
register
or
login
to post a comment