cleanup method
✅ Clean up temp file
Implementation
Future<void> cleanup() async {
if (isTemp) {
await _TempFileTracker.remove(path);
}
}
✅ Clean up temp file
Future<void> cleanup() async {
if (isTemp) {
await _TempFileTracker.remove(path);
}
}