stream_listen
Subscribe to Flutter event streams via VM service for real-time monitoring. Connects to the default Flutter debug port (8181) or a custom port, enabling analysis of debugging, isolate, VM, GC, and logging events.
Instructions
RPC: Subscribe to a Flutter event stream. This is a VM service method for event monitoring. 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 | |
streamId | Yes | Stream ID to subscribe to |
Input Schema (JSON Schema)
{
"properties": {
"port": {
"description": "Optional: Custom port number if not using default Flutter debug port 8181",
"type": "number"
},
"streamId": {
"description": "Stream ID to subscribe to",
"enum": [
"Debug",
"Isolate",
"VM",
"GC",
"Timeline",
"Logging",
"Service",
"HeapSnapshot"
],
"type": "string"
}
},
"required": [
"streamId"
],
"type": "object"
}