cleanupStorage method

  1. @override
Future<int> cleanupStorage()
override

Explicitly cleanup orphaned files (user must call this - NOT automatic) Returns number of deleted files

Implementation

@override
Future<int> cleanupStorage() async {
  await _ensureInitialized();
  // Web platform doesn't have file system access, nothing to cleanup
  debugPrint('WebModelManager: cleanupStorage() is a no-op on web');
  return 0;
}