flutter_core_evict
Remove specified assets from the Flutter app’s cache to optimize performance and debug memory issues. Enter the asset path and port number for targeted cache eviction.
Instructions
RPC: Evict an asset from the Flutter app's cache
Input Schema
Name | Required | Description | Default |
---|---|---|---|
asset | Yes | Asset path to evict from the cache | |
port | No | Port number where the Flutter app is running (defaults to 8181) |
Input Schema (JSON Schema)
{
"properties": {
"asset": {
"description": "Asset path to evict from the cache",
"type": "string"
},
"port": {
"description": "Port number where the Flutter app is running (defaults to 8181)",
"type": "number"
}
},
"required": [
"asset"
],
"type": "object"
}