cleanup method

Future<void> cleanup()

✅ Clean up temp file

Implementation

Future<void> cleanup() async {
  if (isTemp) {
    await _TempFileTracker.remove(path);
  }
}