mirror of
https://github.com/h7x4/Jisho-Study-Tool.git
synced 2024-12-22 05:57:28 +01:00
13 lines
204 B
Dart
13 lines
204 B
Dart
part of 'theme_bloc.dart';
|
|
|
|
@immutable
|
|
abstract class ThemeEvent {
|
|
const ThemeEvent();
|
|
}
|
|
|
|
class SetTheme extends ThemeEvent {
|
|
final bool themeIsDark;
|
|
|
|
const SetTheme({required this.themeIsDark});
|
|
}
|