dart_io_get_http_profile_request
Retrieve detailed information about a specific HTTP request from a Flutter app's profile for debugging purposes. Requires the request ID and optionally the app's running port.
Instructions
RPC: Get details of a specific HTTP request from the profile
Input Schema
Name | Required | Description | Default |
---|---|---|---|
port | No | Port number where the Flutter app is running (defaults to 8181) | |
requestId | Yes | ID of the HTTP request to get details for |
Input Schema (JSON Schema)
{
"properties": {
"port": {
"description": "Port number where the Flutter app is running (defaults to 8181)",
"type": "number"
},
"requestId": {
"description": "ID of the HTTP request to get details for",
"type": "string"
}
},
"required": [
"requestId"
],
"type": "object"
}