releaseOutput method
Release a single output. No-op on native (files live until clearCache); on web it revokes the blob: URL so the browser can free the bytes.
Implementation
@override
Future<void> releaseOutput(String path) async {
if (!_engineReady) return;
_jsRevoke(path);
}