Format
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
kolaente 2020-01-13 23:16:26 +01:00
parent ac67ccbd4c
commit ea8ba3cfd9
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 2 additions and 1 deletions

View File

@ -36,7 +36,8 @@ class Client {
port: uri.port,
path: uri.path,
query: uri.query,
queryParameters: queryParameters, // Because dart takes a Map<String, String> here, it is only possible to sort by one parameter while the api supports n parameters.
queryParameters:
queryParameters, // Because dart takes a Map<String, String> here, it is only possible to sort by one parameter while the api supports n parameters.
fragment: uri.fragment);
return http.get(newUri, headers: _headers).then(_handleResponse);
}