Skip to content

Commit 3b12dde

Browse files
committed
refactor: Remove unused dependencies from AppBloc
1 parent faaee80 commit 3b12dde

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

lib/app/bloc/app_bloc.dart

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ class AppBloc extends Bloc<AppEvent, AppState> {
1818
required local_config.AppEnvironment environment,
1919
}) : _authenticationRepository = authenticationRepository,
2020
_userAppSettingsRepository = userAppSettingsRepository,
21-
_appConfigRepository = appConfigRepository,
22-
_environment = environment,
2321
super(
2422
const AppState(),
2523
) {
@@ -34,8 +32,6 @@ class AppBloc extends Bloc<AppEvent, AppState> {
3432

3533
final HtAuthRepository _authenticationRepository;
3634
final HtDataRepository<UserAppSettings> _userAppSettingsRepository;
37-
final HtDataRepository<AppConfig> _appConfigRepository;
38-
final local_config.AppEnvironment _environment;
3935
late final StreamSubscription<User?> _userSubscription;
4036

4137
/// Handles user changes and loads initial settings once user is available.

0 commit comments

Comments
 (0)