Files
moonwell-launcher/lib/app/home_screen/bloc/home_screen_event.dart
T
gasaichandesu 58d7808a8d Initial commit
2025-08-30 19:50:39 +04:00

17 lines
428 B
Dart

part of 'home_screen_bloc.dart';
@immutable
sealed class HomeScreenEvent {}
final class HomeScreenLoad extends HomeScreenEvent {}
final class HomeScreenDownloadRequested extends HomeScreenEvent {}
final class HomeScreenDownloadPaused extends HomeScreenEvent {}
final class HomeScreenDownloadProgressUpdated extends HomeScreenEvent {
final DownloadProgress progress;
HomeScreenDownloadProgressUpdated(this.progress);
}