Merge branch 'main' into resolve-issue-cURL_initial_view_code

This commit is contained in:
ch1nru5t
2024-02-24 12:54:46 +05:30
2 changed files with 5 additions and 5 deletions

View File

@ -83,7 +83,7 @@ In case you have already setup Flutter, make sure to switch to `stable` branch a
1. Fork the project.
2. Create a clone of the forked project on your computer to run it locally.
3. Based on your desktop environment, enable Windows, macOS or Linux for the project. Select the same target device.
4. This project uses [Records feature in Dart](https://github.com/dart-lang/language/blob/main/accepted/future-releases/records/records-feature-specification.md), so to run the project execute the following command:
4. Run the project by executing the following command:
```
flutter run

View File

@ -92,7 +92,7 @@ const requestModelGet8 = RequestModel(
/// GET request model with some params enabled
const requestModelGet9 = RequestModel(
id: 'enabledParams',
id: 'get9',
url: 'https://api.foss42.com/humanize/social',
method: HTTPVerb.get,
requestParams: [
@ -111,7 +111,7 @@ const requestModelGet9 = RequestModel(
/// GET Request model with some headers enabled
const requestModelGet10 = RequestModel(
id: 'enabledParams',
id: 'get10',
url: 'https://api.foss42.com/humanize/social',
method: HTTPVerb.get,
requestHeaders: [
@ -126,7 +126,7 @@ const requestModelGet10 = RequestModel(
/// GET Request model with some headers & URL parameters enabled
const requestModelGet11 = RequestModel(
id: 'enabledRows',
id: 'get11',
url: 'https://api.foss42.com/humanize/social',
method: HTTPVerb.get,
requestParams: [
@ -153,7 +153,7 @@ const requestModelGet11 = RequestModel(
/// Request model with all headers & URL parameters disabled
const requestModelGet12 = RequestModel(
id: 'disabledRows',
id: 'get12',
url: 'https://api.foss42.com/humanize/social',
method: HTTPVerb.get,
requestParams: [