releaseOutput method

  1. @override
Future<void> releaseOutput(
  1. String path
)
override

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);
}