Initial commit: unionflow-mobile-apps

Application Flutter complète (sans build artifacts).

Signed-off-by: lions dev Team
This commit is contained in:
dahoud
2026-03-15 16:30:08 +00:00
commit d094d6db9c
1790 changed files with 507435 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
/// Use Case: Vider le cache applicatif
library clear_cache;
import 'package:injectable/injectable.dart';
import '../repositories/system_config_repository.dart';
/// Vide le cache applicatif
///
/// Use case pour nettoyer le cache et libérer de l'espace mémoire
/// Endpoint: POST /api/system/cache/clear
@injectable
class ClearCache {
final ISystemConfigRepository _repository;
ClearCache(this._repository);
/// Exécute le use case
/// Vide complètement le cache applicatif
Future<void> call() async {
return _repository.clearCache();
}
}