2025-08-19 12:23:53 +07:00

7 lines
139 B
Dart

part of 'home_bloc.dart';
@freezed
class HomeEvent with _$HomeEvent {
const factory HomeEvent.fetchedDashboard() = _FetchedDashboard;
}