get_vm_info
Retrieve VM information from a Flutter app for debugging. Connects to the default Flutter debug port (8181) or a specified custom port. Supports analysis of widget trees, navigation, and layout issues.
Instructions
Utility: Get VM information from a Flutter app. This is a VM service method, not a Flutter RPC. Connects to the default Flutter debug port (8181) unless specified otherwise.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
port | No | Optional: Custom port number if not using default Flutter debug port 8181 |
Input Schema (JSON Schema)
{
"properties": {
"port": {
"description": "Optional: Custom port number if not using default Flutter debug port 8181",
"type": "number"
}
},
"required": [],
"type": "object"
}