chnages has been made

This commit is contained in:
Daniah Ayad Al-sultani
2026-02-22 11:18:10 +03:00
parent 3a9e7ca8db
commit f616a2c104
26 changed files with 1130 additions and 201 deletions

View File

@@ -0,0 +1,11 @@
import 'package:dartz/dartz.dart';
import '../../core/error/failures.dart';
import '../models/theme_model.dart';
import '../repositories/theme_repository.dart';
class GetThemeUseCase {
final ThemeRepository repo;
GetThemeUseCase(this.repo);
Future<Either<Failure, ThemeModel>> call() => repo.getTheme();
}