mirror of
https://github.com/foss42/apidash.git
synced 2025-06-06 11:28:07 +08:00
Merge branch 'main' into resolve-issue-cURL_initial_view_code
This commit is contained in:
@ -83,7 +83,7 @@ In case you have already setup Flutter, make sure to switch to `stable` branch a
|
|||||||
1. Fork the project.
|
1. Fork the project.
|
||||||
2. Create a clone of the forked project on your computer to run it locally.
|
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.
|
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
|
flutter run
|
||||||
|
@ -92,7 +92,7 @@ const requestModelGet8 = RequestModel(
|
|||||||
|
|
||||||
/// GET request model with some params enabled
|
/// GET request model with some params enabled
|
||||||
const requestModelGet9 = RequestModel(
|
const requestModelGet9 = RequestModel(
|
||||||
id: 'enabledParams',
|
id: 'get9',
|
||||||
url: 'https://api.foss42.com/humanize/social',
|
url: 'https://api.foss42.com/humanize/social',
|
||||||
method: HTTPVerb.get,
|
method: HTTPVerb.get,
|
||||||
requestParams: [
|
requestParams: [
|
||||||
@ -111,7 +111,7 @@ const requestModelGet9 = RequestModel(
|
|||||||
|
|
||||||
/// GET Request model with some headers enabled
|
/// GET Request model with some headers enabled
|
||||||
const requestModelGet10 = RequestModel(
|
const requestModelGet10 = RequestModel(
|
||||||
id: 'enabledParams',
|
id: 'get10',
|
||||||
url: 'https://api.foss42.com/humanize/social',
|
url: 'https://api.foss42.com/humanize/social',
|
||||||
method: HTTPVerb.get,
|
method: HTTPVerb.get,
|
||||||
requestHeaders: [
|
requestHeaders: [
|
||||||
@ -126,7 +126,7 @@ const requestModelGet10 = RequestModel(
|
|||||||
|
|
||||||
/// GET Request model with some headers & URL parameters enabled
|
/// GET Request model with some headers & URL parameters enabled
|
||||||
const requestModelGet11 = RequestModel(
|
const requestModelGet11 = RequestModel(
|
||||||
id: 'enabledRows',
|
id: 'get11',
|
||||||
url: 'https://api.foss42.com/humanize/social',
|
url: 'https://api.foss42.com/humanize/social',
|
||||||
method: HTTPVerb.get,
|
method: HTTPVerb.get,
|
||||||
requestParams: [
|
requestParams: [
|
||||||
@ -153,7 +153,7 @@ const requestModelGet11 = RequestModel(
|
|||||||
|
|
||||||
/// Request model with all headers & URL parameters disabled
|
/// Request model with all headers & URL parameters disabled
|
||||||
const requestModelGet12 = RequestModel(
|
const requestModelGet12 = RequestModel(
|
||||||
id: 'disabledRows',
|
id: 'get12',
|
||||||
url: 'https://api.foss42.com/humanize/social',
|
url: 'https://api.foss42.com/humanize/social',
|
||||||
method: HTTPVerb.get,
|
method: HTTPVerb.get,
|
||||||
requestParams: [
|
requestParams: [
|
||||||
|
Reference in New Issue
Block a user