mirror of
https://gitlab.com/foxixus/neomovies_mobile.git
synced 2025-10-28 00:38:50 +05:00
Fixed duplicated code that caused compilation error:
- Removed duplicate _setError method definition
- Fixed parameter list: void _setError(String? error, [String? stackTrace])
- File now compiles correctly
Error was:
lib/presentation/providers/downloads_provider.dart:173:2: Error: Expected a declaration, but got '?'.
}? error) {
^
Fixed by properly replacing the old method with new signature.