mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-12-19 04:54:26 -05:00
8 lines
241 B
Dart
8 lines
241 B
Dart
|
import '../tools/tools.dart';
|
||
|
import 'settings.dart';
|
||
|
|
||
|
class PreferencesCubit extends StreamWrapperCubit<Preferences> {
|
||
|
PreferencesCubit(PreferencesRepository repository)
|
||
|
: super(repository.stream, defaultState: repository.value);
|
||
|
}
|