We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 623fef3 commit be31922Copy full SHA for be31922
README.md
@@ -70,7 +70,7 @@ Performing a `GET` request:
70
```dart
71
Response response;
72
Dio dio = new Dio();
73
-response = await dio.get("/test?id=12&name=wendu")
+response = await dio.get("/test?id=12&name=wendu");
74
print(response.data.toString());
75
// Optionally the request above could also be done as
76
response = await dio.get("/test", queryParameters: {"id": 12, "name": "wendu"});
0 commit comments