7 lines
139 B
Dart
7 lines
139 B
Dart
part of 'home_bloc.dart';
|
|
|
|
@freezed
|
|
class HomeEvent with _$HomeEvent {
|
|
const factory HomeEvent.fetchedDashboard() = _FetchedDashboard;
|
|
}
|