dart_io_socket_profiling_enabled
Enable or disable socket profiling for Flutter debugging. Connects to the default Flutter debug port (8181) or a custom port for detailed analysis of app performance.
Instructions
RPC: Enable or disable socket profiling. Connects to the default Flutter debug port (8181) unless specified otherwise.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
enabled | Yes | Whether to enable or disable socket profiling | |
port | No | Optional: Custom port number if not using default Flutter debug port 8181 |
Input Schema (JSON Schema)
{
"properties": {
"enabled": {
"description": "Whether to enable or disable socket profiling",
"type": "boolean"
},
"port": {
"description": "Optional: Custom port number if not using default Flutter debug port 8181",
"type": "number"
}
},
"required": [
"enabled"
],
"type": "object"
}